【发布时间】:2012-01-17 10:10:17
【问题描述】:
我有一个 HTML 表格,我必须在其中设置整体宽度,并希望确保标签列不会变得太宽。
它在 Firefox 4 中按预期工作,但 IE 9 似乎完全忽略了 with 属性。
<html>
<head>
<style type="text/css">
table,th,td { border: solid 1px; border-collapse: collapse; }
th.caption { width: 700px; }
.label { width: 100px; }
</style>
</head>
<body>
<table>
<tr><th class="caption" colspan=2>Caption</th></tr>
<tr><td class="label">Label</td><td>Stuff...</td></tr>
<tr><td class="label">Label</td><td>Stuff...</td></tr>
</table>
</body>
</html>
【问题讨论】:
标签: html css internet-explorer firefox cross-browser