我想限制表格中列的宽度。
<!DOCTYPE html>
<style type="text/css">
table tr td {border:1px solid; max-width:2em; overflow:hidden; white-space:nowrap;}
</style>
<table>
<tr><td>this is looooooooo ooooooooo ooooooooooooo ooooooooo ng text</td></tr>
</table>
下一个代码在 Firefox 中运行良好(单元格的宽度有限),但在 IE9 中宽度不受限制。