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


HTML <colgroup> bgcolor属性用法及代码示例


HTML <colgroup> bgcolor属性用于指定colgroup元素的背景色。 HTML 5不支持它。

用法:

<colgroup 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 colgroup bgcolor Attribute 
    </title> 
  
    <style> 
        table { 
            color:white; 
            margin-left:180px; 
        } 
          
        td { 
            padding:10px; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        HTML ColumnGroup bgcolor Attribute  
    </h2> 
  
    <table> 
        <colgroup id="myColGroup"
                  span="2"
                  bgcolor="green"> 
        </colgroup> 
        <tr> 
            <th>S.No</th> 
            <th>Title</th> 
            <th>Geek_id</th> 
        </tr> 
        <tr> 
            <td>Geek_1</td> 
            <td>GeekForGeeks</td> 
            <th>Geek_id_1</th> 
        </tr> 
        <tr> 
            <td>Geek_2</td> 
            <td>GeeksForGeeks</td> 
            <th>Geek_id_2</th> 
        </tr> 
    </table> 
</body> 
  
</html>

输出:

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

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


相关用法


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