定义和用法
该span属性定义的列数<col>/<colgroup>元素应该跨越。
适用于
该span属性可以在下列元素一起使用:
分子 | 属性 |
---|---|
<col> | span |
<colgroup> | span |
例子
举例上校
这里,前两列应具有红色的背景色:
<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>
试一试» Colgroup例
设置使用前两列的背景颜色<colgroup> span特性:
<table>
<colgroup span="2" style="background:red"></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>
<tr>
<td>5869207</td>
<td>My first CSS</td>
<td>$49</td>
</tr>
</table>
试一试» 浏览器支持
该span
属性为每个元素以下浏览器支持:
元件 | |||||
---|---|---|---|---|---|
col | 是 | 是 | 是 | 是 | 是 |
colgroup | 是 | 是 | 是 | 是 | 是 |