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


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


HTML <body> bgcolor属性用于定义文档的背景色。

用法:

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

属性值:


  • color_name:它指定文档的背景颜色的名称。
  • hex_number:它在文档中指定背景颜色的十六进制代码。
  • rgb_number:它在文档中指定背景色的rgb值

例:

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

输出:

支持的浏览器:<Body> bgcolor支持的浏览器如下所示:

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


相关用法


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