HTML span 属性


定义和用法

span 属性定义 <col>/<colgroup> 元素应跨越的列数。


适用于

span 属性可用于以下元素:

元素 属性
<col> span
<colgroup> span

实例

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>
亲自试一试 »

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 Yes Yes Yes Yes Yes
colgroup Yes Yes Yes Yes Yes