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 -

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

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -