HTML <colgroup> span 屬性
實例
使用 <colgroup> span 屬性設(shè)置前兩列的背景顏色:
<table border="1">
<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>
<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 屬性。
定義和用法
span 屬性定義了 <colgroup> 元素應(yīng)該橫跨的列數(shù)。
提示:要為 <colgroup> 內(nèi)的列定義不同的屬性,請在 <colgroup> 標(biāo)簽內(nèi)使用 <col> 標(biāo)簽。
HTML 4.01 與 HTML5之間的差異
無。
語法
<colgroup span="number">
屬性值
值 | 描述 |
---|---|
number | 設(shè)置列組應(yīng)該橫跨的列數(shù)。 |
HTML <colgroup> 標(biāo)簽
更多建議: