Если вы хотите дать уникальный в каждой ячейке, то вы проверите это: -
<html>
<head>
</head>
<style>
.upperCell:hover {
background-color: red;
}
.lowerCell:hover {
background-color: yellow;
}
</style>
<body>
<table width="300" border="1">
<tr>
<td class="upperCell">one</td>
<td class="upperCell">two</td>
</tr>
<tr class="tab">
<td class="lowerCell">one</td>
<td class="lowerCell">two</td>
</tr>
</table>
</body>
</html>
Если вы хотите, чтобы один и тот же цвет отображался в каждом ряду, проверьте это: -
<html>
<head>
</head>
<style>
.upperCell:hover {
background-color: red;
}
.lowerCell:hover {
background-color: yellow;
}
</style>
<body>
<table width="300" border="1">
<tr class="upperCell">
<td>one</td>
<td>two</td>
</tr>
<tr class="tab lowerCell">
<td >one</td>
<td>two</td>
</tr>
</table>
</body>
</html>