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.

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
Post a Comment