HTML <tr> bgcolor attribute
HTML <tr> tag
Example
An HTML table with a background color on the first table row:
<table border="1">
<tr bgcolor="#FF0000">
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table> |
Try it yourself!
|
Definition and Usage
The bgcolor attribute specifies a background color of a table row.
Browser Support

The bgcolor attribute is deprecated, but still supported in all major browsers.
Compatibility Notes
The bgcolor attribute of the tr element was deprecated in HTML 4.01,
and is not supported in XHTML 1.0 Strict DTD.
Use CSS instead.
CSS syntax: <tr style="background-color:red">
CSS
Example: table row background-color
In our CSS tutorial you can find more details about the
background-color property.
Syntax
Attribute Values
Value |
Description |
color_name |
Specifies the background color with
a color name (like "red") |
hex_number |
Specifies the background color with
a hex code (like "#ff0000") |
rgb_number |
Specifies the background color with
an rgb code (like "rgb(255,0,0)") |
HTML <tr> tag
 |
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate is for developers who want to document their knowledge of JavaScript and the HTML DOM.
The XML Certificate is for developers who want to document their knowledge of XML, XML DOM and XSLT.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
The PHP Certificate is for developers who want to document their knowledge of PHP and SQL (MySQL).
|
|