例
設置使用前兩列的背景顏色<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屬性定義的列數<colgroup>元素應該跨越。
提示:要中定義不同的屬性到列<colgroup>使用<col>的內標籤<colgroup>標籤。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
span | 是 | 是 | 是 | 是 | 是 |
HTML 4.01和HTML5之間的差異
沒有。
句法
<colgroup span="number">
屬性值
值 | 描述 |
---|---|
number | 設置一個欄目組應跨越的列數 |