| row 1 | 
| row 2 | 
<table id="tbl">
  <tbody>
    <tr>
      <td>row 1</td>
    </tr>
    <tr>
      <td>row 2</td>
    </tr>
  </tbody>
</table>
CSS...
td {
  -webkit-transition-property: background;
  -webkit-transition-duration: 5s;
  -moz-transition-property: background;
  -moz-transition-duration: 5s;
  transition-property: background;
  transition-duration: 5s;
  background-color: white;
}
td:hover {
  background-color: red;
}