HTML <col> span 屬性
實(shí)例
在這里,前兩列背景顏色為紅色:
<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 屬性規(guī)定 col 元素應(yīng)該橫跨的列數(shù)。
HTML 4.01 與 HTML5之間的差異
無。
語法
<col span="number">
屬性值
值 | 描述 |
---|---|
number | 設(shè)置 col 元素應(yīng)該橫跨的列數(shù)。 |
HTML <col> 標(biāo)簽
更多建議: