例
这里,前两列应具有红色的背景色:
<table>
<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属性定义的列数<col>元素应该跨越。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
span | 是 | 是 | 是 | 是 | 是 |
HTML 4.01和HTML5之间的差异
没有。
句法
<col span="number">
属性值
值 | 描述 |
---|---|
number | 设置一个列数<col>元素应该跨越 |