Forum Moderators: not2easy
<style type="text/css">
.table1 td {
background-color: #00ffff;
color: black;
}
.table1 tbody tr:hover {
background-color: pink;
}
</style> <table border="1" class="table1">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1: Col 1</td>
<td>R1C2</td>
</tr>
<tr>
<td>Row 2: Col 1</td>
<td>R2C2</td>
</tr>
</tbody>
</table>