【发布时间】:2013-02-12 00:36:29
【问题描述】:
当我使用固定宽度 (IE 7) 时,我无法让 colspan 工作?为什么?!
示例代码:
<html>
<head>
<style>
.inputGroup td
{ width:250px; }
</style>
</head>
<body>
<table class="inputGroup">
<tr>
<td>cell1</td>
<td>cell2</td>
</tr>
<tr>
<td colspan="2">This should span two columns but it doesnt</td>
</tr>
<tr>
<td>cell1</td>
<td>cell2</td>
</tr>
</table>
</body>
</html>
帮助任何人? :(
【问题讨论】:
标签: html html-table