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


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