html - Limit table cell to only one line of text? 'overflow' and 'white-space' not working -
i have table w/ multiple columns , rows, , i'm trying limit each cell 1 line of text. second lines , beyond want hidden because multiple lines disrupt height of each table row.
first off, sells contain
tags, , following code not fixing issue:
table { table-layout: fixed; } td { overflow: hidden; white-space: nowrap; width: 50px; } how can limit each cell 1 line of text?
nowrap works in table cells, using <br> forcing line break. enter long text spaces , see works fine:
<td><p>3 4 5 5 5 5 5 5 5 5 5 5 5</p></td> if put text-overflow:ellipsis; , strip <p> tags, can make end ...:
if wish ignore <br> in td, use css walkaround:
td br{ line-height: 0px; display:none; }
Comments
Post a Comment