最新的Web開發教程
 

HTML <colgroup> span Attribute

<HTML <colgroup>標籤

設置使用前兩列的背景顏色<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 設置一個欄目組應跨越的列數

<HTML <colgroup>標籤