HTML <col> span 屬性
實例
在這裏,前兩列背景顏色為紅色:
<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>
<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 元素應該橫跨的列數。
HTML 4.01 與 HTML5之間的差異
NONE.
語法
<col span="number">
屬性值
值 | 描述 |
---|---|
number | 設置 col 元素應該橫跨的列數。 |
