HTML th bgcolor 屬性
HTML <th>bgcolor屬性
HTML <th> 標簽
實例
給表頭單元格添加背景顏色:
<table border="1">
? <tr>
??? <th bgcolor="#FF0000">Month</th>
??? <th bgcolor="#00FF00">Savings</th>
? </tr>
? <tr>
??? <td>January</td>
??? <td>$100</td>
? </tr>
</table>
? <tr>
??? <th bgcolor="#FF0000">Month</th>
??? <th bgcolor="#00FF00">Savings</th>
? </tr>
? <tr>
??? <td>January</td>
??? <td>$100</td>
? </tr>
</table>
瀏覽器支持
所有主流瀏覽器都支持 bgcolor 屬性。
定義和用法
HTML5 不支持 <th> bgcolor 屬性。請使用 CSS 代替。
在 HTML 4.01 中,<th> 的 bgcolor 屬性 已廢棄。
bgcolor 屬性規定表頭單元格的背景顏色。
兼容性注釋
在 HTML 4.01 中,<th> 的 bgcolor 屬性已廢棄。請使用 CSS 代替。
CSS 語法:<th style="background-color:red">
CSS 實例:給表頭單元格添加背景顏色
在我們的 CSS 教程中,您可以找到更多有關 background-color 屬性 的細節。
語法
<th bgcolor="color_namehex_numberrgb_number">
屬性值
值 | 描述 |
---|---|
color_name | 規定顏色值為顏色名稱的背景顏色(比如 "red")。 |
hex_number | 規定顏色值為十六進制值的背景顏色(比如 "#ff0000")。 |
rgb_number | 規定顏色值為 rgb 代碼的背景顏色(比如 "rgb(255,0,0)")。 |
HTML <th> 標簽