Hola estebanpc y PascalC.
También puede recurrirse a JavaScript para conseguir ese efecto. Espero funcionará en todos los navegadores.
Código HTML:
<html>
<head>
<style>
.toto {background-color:blue; }
</style>
<script>
function ini() {
obj=document.getElementById('tabla');
celda=obj.getElementsByTagName('td');
for(i=0;i<celda.length;i++) {
celda[i]['onmouseover']= new Function ("this.className='toto'");
celda[i]['onmouseout']= new Function ("this.className=''");
}
}
</script>
</head>
<body onload="ini()">
<table id="tabla">
<tr>
<td>aaa</td><td>aaa</td><td>aaa</td>
</table>
</body>
</html>
Saludos,