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
相關用法
- HTML <table> bgcolor屬性用法及代碼示例
- HTML <td> bgcolor屬性用法及代碼示例
- HTML <tr> bgcolor屬性用法及代碼示例
- HTML <th> bgcolor屬性用法及代碼示例
- HTML <body> bgcolor屬性用法及代碼示例
- HTML Marquee bgcolor用法及代碼示例
- HTML thead bgcolor用法及代碼示例
- HTML <col> bgcolor屬性用法及代碼示例
- HTML <colgroup> bgcolor屬性用法及代碼示例
- HTML <tfoot> bgcolor屬性用法及代碼示例
- HTML <tbody> bgcolor屬性用法及代碼示例
- Web API HTMLBodyElement.bgColor用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML poster屬性用法及代碼示例
- HTML Class屬性用法及代碼示例
- HTML style屬性用法及代碼示例
- HTML oninvalid用法及代碼示例
- HTML <select> autocomplete屬性用法及代碼示例
- HTML onsubmit用法及代碼示例
- HTML onunload用法及代碼示例
注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | bgcolor attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。