Styling Examples
Styling Examples
by ZenMaster
HTML
<table>
<tr>
<td>First</td>
<td>Second</td>
</tr>
<tr>
<td>Third</td>
<td>Fourth</td>
</tr>
</table>
CSS
table tr:last-child td:last-child
{
background-color: red;
color: white;
}
table tr:first-child td:first-child
{
background-color: blue;
color: white;
}