css - Limit TD text length -


i've grid generated backgrid.

and want limit text length, each td must on 1 line.

width property on td has no effect.

thanks help.

enter image description here

depending on how define 'limit', can prevent wrapping, , control overflow:

td{   white-space:nowrap;   overflow:hidden;   text-overflow:ellipsis; } 

this keep contents 1 line, ellipsis being appended end if textual content exceeds allowed width of td


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -