In IE8 it works fine. In firefox, if I remove the nowrap attribute from the td text, the result is wrapped properly, but without deleting the nowrap text, the text is not wrapped.
Is there a way to rewrite the nowrap attribute via css in firefox.
<div style="width:100%;border:1px solid #eaeaea">
<table style="width:100%;word-wrap:break-word;table-layout:fixed" border="1" >
<tr>
<td>
thisssssssssssssssssssssssssss
</td>
<td nowrap="" style="word-wrap:break-word;">
22222222thisssssssssssssssssssssssssss22222222thisssssssssssssssssssssssssss22222222thisssssssssssssssssssssssssss
</td>
</tr>
</table>
</div>
source
share