3

使用 CSS,我想为表格中的列指定某些宽度。我应该在 thead 中(在 th 上)、在 tbody 中(在 td 上)设置宽度......还是两者都设置?

4

2 回答 2

1

's将<th>是设置宽度的最佳位置,因为它只迭代一次。

为您的客户节省几个字节。

另一个<td>会隐含地成形。

于 2013-06-20T15:53:10.970 回答
0

您可以使用 colgroup 标签来说明 cloumns 样式。例如

<table>
 <colgroup>
  <col style="color:red;width:100px">
  <col style="background-color:yellow">
 </colgroup>
 <tr>
  <th>this will be red and width is 100px</th>
  <th>this will be yellow</th>
 </tr>
</table>
于 2013-06-20T16:33:56.663 回答