当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML thead bgcolor用法及代码示例


HTML thead bgcolor属性用于指定表头的背景色。 HTML 5不支持它。

用法:

<thead bgcolor= "color_name | hex_number | rgb_number">

属性值:



  • color_name:它通过使用颜色名称设置文本颜色。例如“red”。
  • hex_number:它使用十六进制颜色代码设置文本颜色。例如“#0000ff”。
  • rgb_number:它使用rgb代码设置文本颜色。例如:“ RGB(0,153,0)”。

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML thead bgcolor Attribute  
    </title>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1>  
  
    <h2>HTML thead bgcolor Attribute</h2>  
  
    <table border="1"
        width="500">  
        <thead bgcolor="red">  
            <tr>  
                <th>NAME</th>  
                <th>AGE</th>  
                <th>BRANCH</th>  
            </tr>  
        </thead>  
  
        <tbody align="center" >  
            <tr>  
                <td>BITTU</td>  
                <td>22</td>  
                <td>CSE</td>  
            </tr>  
        </tbody>  
    </table>  
</body>  
  
</html> 

输出:

支持的浏览器:下面列出了HTML <thead> bgcolor属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera



相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | thead bgcolor Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。