I have a table with a fixed layout. When overflowing, the contents of the cells should lie on the left, and not on the right. That is, if the width of the TD is less than the width of the text, the cell below should display "67890" instead of "12345".
This should work in IE7 + at least. Is there a way to do this in css without JavaScript?
<table style="table-layout:fixed">
<tr>
<TD>
12334567890
</TD>
</tr>
</table>
source
share