【发布时间】:2013-01-28 14:17:45
【问题描述】:
我想限制表格中列的宽度。
<!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 中宽度不受限制。
【问题讨论】:
-
我的代码包含建议的解决方案