我想使用 div 完成如下表的相同结果,以便我可以使其响应并调整每个表行的列数。(例如,在第一行有 3 个响应列,然后在第二行有四个响应列)。我也想避免在单独的 tr 中写单个单词
有没有办法做到这一点?
这是当前表格
<table>
<thead>
<tr>
<th class="short-column">Short Column</th> <!-- th sets the width -->
<th class="short-column">Short Column</th> <!-- th sets the width -->
<th class="long-column">Long Column</th> <!-- th sets the width -->
</tr>
</thead>
<tbody>
<tr>
<td class="lite-gray">Short Column</td> <!-- td inherits th width -->
<td class="lite-gray">Short Column</td> <!-- td inherits th width -->
<td class="gray">Long Column</td> <!-- td inherits th width -->
</tr>
</tbody>
</table>
table { table-layout: fixed; border-collapse: collapse; border-spacing: 0; width: 100%; }
.short-column { background: yellow; width: 30%; }
.long-column { background: lime; width: 40%; }
.lite-gray { background: #f2f2f2; }
.gray { background: #cccccc; }
是否可以使用类似的东西
<table width="100%" border="0" cellspacing="0" cellpadding="4">
<tr>
<td>
<!--<div>THREE COLUMNS</div>-->
</td>
</tr>
<tr>
<td>
<!--<div>FOUR COLUMNS?</div>-->
</td>
</tr>
</table>