📜  HTML |<colgroup> bgcolor 属性(1)

📅  最后修改于: 2023-12-03 15:15:38.705000             🧑  作者: Mango

HTML | colgroup bgcolor属性

简介

<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>