最新的Web開發教程
 

HTML <col> span Attribute

<HTML <col>標籤

這裡,前兩列應具有紅色的背景色:

<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屬性定義的列數<col>元素應該跨越。


瀏覽器支持

屬性
span

HTML 4.01和HTML5之間的差異

沒有。


句法

<col span="number">

屬性值

描述
number 設置一個列數<col>元素應該跨越

<HTML <col>標籤