例如,可以在<colgroup> 内使用 <col> 元素来为表格的列定义样式、宽度等属性:
<table>
<colgroup>
<col style="background-color: lightblue;">
<col style="background-color: lightgreen;">
</colgroup>
<tr>
<td>列1</td>
<td>列2</td>
</tr>
</table>
在这个例子中,<colgroup> 包含两个 <col> 元素,分别为表格的两列指定了背景颜色。这样可以通过 <col> 元素为整列应用样式,而不必为每个单元格单独设置样式。
转载请注明出处:http://www.zyzy.cn/article/detail/3835/HTML