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