Hola
Diabolus
Esta sería tu celda:
<td style="color:red;background:yellow" onmouseover="cambiar(this.'dentro')" onmouseout="cambiar(this.'fuera')">
y esta la función para cambiar los colores:
Código HTML:
function cambiar(obj,raton) {
if(raton=='dentro') {
obj.style.color='yellow';
obj.style.background='red';
}
else {
obj.style.color='red';
obj.style.background='yellow';
}
}
Espero que te sirva. Saludos,