tr background color code example
Example 1: tr background color
<table>
<tr bgcolor="#ddd">
<td>First column</td>
<td>Second column</td>
<td>Third column</td>
</tr>
<tr bgcolor="#eee">
<td>First column</td>
<td>Second column</td>
<td>Third column</td>
</tr>
<tr bgcolor="#ddd">
<td>First column</td>
<td>Second column</td>
<td>Third column</td>
</tr>
</table>
Example 2: text background color css
body {
background-color:rgb(130, 50, 29);
}