📅  最后修改于: 2023-12-03 15:15:38.705000             🧑  作者: Mango
<colgroup>
标签定义表格列的组,并设置列的特殊属性,例如宽度和背景颜色。bgcolor
属性可在 <colgroup>
标签中为列组设置背景颜色。该属性不支持在单独的 <col>
标签上设置。
<colgroup bgcolor="colorname|hexcode|rgb(x,x,x)">
colorname
: 指定颜色名称,如 red
, green
, blue
等。hexcode
: 使用十六进制值指定颜色,如 #000000
表示黑色。rgb(x,x,x)
: 使用 RGB 值指定颜色,x 取值范围为 0-255,如 rgb(0,0,0)
表示黑色。<table>
<colgroup bgcolor="#e6f7ff">
<col>
<col>
</colgroup>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
Month | Savings |
---|---|
January | $100 |
February | $80 |
bgcolor
属性已被弃用,用 CSS 样式替代是更好的选择。<colgroup>
。