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