HTML <colgroup> 标签


示例

使用 <colgroup> 和 <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>标签对于将样式应用于整个列非常有用,而不是为每个单元格、每行重复样式。

笔记:这个<colgroup>标记必须是 <table> 元素的子元素,位于任何 <caption> 元素之后以及任何 <thead>、<tbody>、<tfoot> 和 <tr> 元素之前。

提示:为同一列中的列定义不同的属性<colgroup>, 使用<栏>内的标签<colgroup>标签。


浏览器支持

Element
<colgroup> Yes Yes Yes Yes Yes


属性

Attribute Value Description
span number Specifies the number of columns a column group should span

全局属性

这个<colgroup>标签还支持HTML 中的全局属性


事件属性

这个<colgroup>标签还支持HTML 中的事件属性


相关页面

HTML DOM 参考:列组对象


默认 CSS 设置

大多数浏览器都会显示<colgroup>具有以下默认值的元素:

示例

colgroup {
  display: table-column-group;
}
亲自试一试 »