mint green rgb color code example
Example 1: css underline color
u
{
text-decoration: underline;
text-decoration-color: red;
}
example of use: (in html)
<p>The word <u>CAT</u>, is underlined </p>
Example 2: 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>