在这里,前两列背景颜色为红色:
运行一下 »<table border="1">
<colgroup>
<col span="2" style="background-color:red" />
<col style="background-color:yellow" />
</colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
</table>
所有主流浏览器都支持 span 属性。
span 属性规定 col 元素应该横跨的列数。
NONE.
<col span="number">
值 | 描述 |
---|---|
number | 设置 col 元素应该横跨的列数。 |