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


HTML bgcolor属性用法及代码示例


HTML bgcolor属性用于设置HTML元素的背景色。 Bgcolor是级联样式表的实现已弃用的那些属性之一(请参阅CSS背景)。

用法:

<"tag" bgcolor="Value">

支持的标签:

例:HTML <table> bgcolor属性

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML table bgcolor Attribute  
    </title>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1>  
  
    <h2>HTML table bgcolor Attribute</h2>  
  
    <table border="1"
        bgcolor="green">  
        <caption>  
        Author Details  
    </caption>  
  
        <tr>  
            <th>NAME</th>  
            <th>AGE</th>  
            <th>BRANCH</th>  
        </tr>  
        <tr>  
            <td>BITTU</td>  
            <td>22</td>  
            <td>CSE</td>  
        </tr>  
        <tr>  
            <td>RAM</td>  
            <td>21</td>  
            <td>ECE</td>  
        </tr>  
    </table>  
</body>  
  
</html> 

输出:



例:HTML正文Bgcolor属性

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
    HTML body Bgcolor Attribute  
</title>  
</head>  
  
<!-- body tag starts here -->
  
<body text="green" bgcolor="orange">  
    <center>  
        <h1>GeeksforGeeks</h1>  
        <h2>  
        HTML <body> bgcolor Attribute  
    </h2>  
        <p>  
        It is a Computer  
        Science portal For Geeks  
    </p>  
    </center>  
</body>  
<!-- body tag ends here -->
  
</html> 

输出:

注意:HTML5不支持bgcolor属性。

支持的浏览器:bgcolor属性支持的浏览器如下:

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




相关用法


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