欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

HTML里怎么设置thead表头的颜色

程序员文章站 2022-02-21 19:35:26
...

HTML中设置thead表头颜色的方法:1、使用“thead {color: 颜色值;}”语句设置表头的字体颜色;2、使用"thead {background:颜色值;}语句设置表头的背景颜色。

HTML里怎么设置thead表头的颜色

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

在HTML中中,创建一个带表头的表格:

<table border="1">
  <thead>
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>

  <tfoot>
    <tr>
      <td>Sum</td>
      <td>$180</td>
    </tr>
  </tfoot>

  <tbody>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
    <tr>
      <td>February</td>
      <td>$80</td>
    </tr>
  </tbody></table>

HTML里怎么设置thead表头的颜色

1、使用color属性设置字体颜色

thead {
color: #FFC0CB;
}

HTML里怎么设置thead表头的颜色

2、使用background属性设置背景颜色

thead {
color: #FFC0CB;
background:blue;
}

HTML里怎么设置thead表头的颜色

(学习视频分享:css视频教程

以上就是HTML里怎么设置thead表头的颜色的详细内容,更多请关注其它相关文章!