HTML <tr> 標(biāo)簽
在建立表格時(shí),如果您需要為表格中的行添加背景顏色,那么可以使用 bgcolor 屬性,下述的例子為表格的第一行添加了背景顏色,您可以嘗試為該表格的第二行添加背景色(參考本手冊的 HTML 顏色名一節(jié)):
實(shí)例
給第一個(gè)表格行添加背景顏色:
<table border="1">
<tr bgcolor="#FF0000">
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<tr bgcolor="#FF0000">
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
瀏覽器支持
所有主流瀏覽器都支持 bgcolor 屬性。
定義和用法
HTML5 不支持 <tr> bgcolor 屬性。請使用 CSS 代替。
在 HTML 4.01 中,<tr> 的 bgcolor 屬性 已廢棄。
bgcolor 屬性規(guī)定表格行的背景顏色。
兼容性注釋
在 HTML 4.01 中,<tr> 的 bgcolor 屬性已廢棄。請使用 CSS 代替。
CSS 語法:<tr style="background-color:red">
CSS 實(shí)例:給表格行添加背景顏色
在我們的 CSS 教程中,您可以找到更多有關(guān) background-color 屬性 的細(xì)節(jié)。
語法
<tr bgcolor="color_name|hex_number|rgb_number">
屬性值
值 | 描述 |
---|---|
color_name | 規(guī)定顏色值為顏色名稱的背景顏色(比如 "red")。 |
hex_number | 規(guī)定顏色值為十六進(jìn)制值的背景顏色(比如 "#ff0000")。 |
rgb_number | 規(guī)定顏色值為 rgb 代碼的背景顏色(比如 "rgb(255,0,0)")。 |
HTML <tr> 標(biāo)簽