最新的Web開發教程
 

HTML span Attribute


定義和用法

span屬性定義的列數<col>/<colgroup>元素應該跨越。


適用於

span屬性可以在下列元素一起使用:

分子 屬性
<col> span
<colgroup> span

例子

舉例上校

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

<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>
試一試»

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屬性為每個元素以下瀏覽器支持:

元件
col
colgroup