HTML <col> 标签


示例

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

定义和用法

这个<col>标签指定每个列的列属性<colgroup>元素。

这个<col>标签对于将样式应用于整个列非常有用,而不是为每个单元格、每行重复样式。


浏览器支持

Element
<col> Yes Yes Yes Yes Yes


属性

Attribute Value Description
span number Specifies the number of columns a <col> element should span

全局属性

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


事件属性

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


相关页面

HTML DOM 参考:列对象


默认 CSS 设置

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

示例

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