0
我有一個表空白設置爲nowrap和列寬度限制使用表格佈局固定。這正確地隱藏了Firefox中的長行,但在IE9中這些行正在打包。白色空間:nowrap不工作在IE 9
測試用例:
<table border="1" width=200 style="white-space: nowrap; table-layout: fixed;">
<tr>
<td style="overflow: hidden;" width=150>Word with some spaces that isnt working in IE</td>
<td width=50>100/50</td>
</tr>
<tr>
<td style="overflow: hidden;" width=150>LoooooooooOOOOOOOOOoooooooooooooooooongword</td>
<td width=50>550/50</td>
</tr>
<tr>
<td style="overflow: hidden;" width=150>AnotherLoooooooooooonnnnnnnnnnnnnnnnGWord</td>
<td width=50>660/50</td>
</tr>
</table>
火狐:
IE 9:
很酷謝謝!不知道標籤可以提供幫助 – waza123