當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。