HTML <tr> with bgcolor Attribute
You are Here:
HTML <tr> with bgcolor Attribute
The bgcolor
attribute specifies the background color of the table row.
Warning: The bgcolor
attribute is deprecated and is no longer recommended.
Tips: To apply background color for a table row, try any of the following methods:
- Using style global attribute: <tr style="background-color: green">.
- Using CSS background property.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<thead>
<tr>
<th>Students</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr bgcolor="green">
<td>Male</td>
<td>28</td>
</tr>
<tr>
<td>Female</td>
<td>30</td>
</tr>
<tr>
<td>Total</td>
<td>58</td>
</tr>
</tbody>
</table>
</body>
</html>
Attribute Values
color | value |
---|---|
red or #FF0000. | |
maroon or #800000. | |
purple or #800080. | |
fuchsia or #FF00FF. | |
green or #008000. | |
lime or #00FF00. | |
olive or #808000. | |
navy or #000080. | |
blue or #0000FF. | |
teal or #008080. | |
aqua or #00FFFF. | |
white or #000000. | |
gray or #808080. | |
silver or #C0C0C0. | |
black or #000000. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.