使用 <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 参考:列组对象
大多数浏览器都会显示<colgroup>
具有以下默认值的元素:
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!