HTML <colgroup> span 属性

❮ 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>, 内的列定义不同的属性,请在 <colgroup> 标签内使用 <col> 标签。


浏览器支持

属性
span Yes Yes Yes Yes Yes

语法

<colgroup span="number">

属性值

描述
number 设置列组应该横跨的列数。

❮ HTML <colgroup> 标签