![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/12/2006, 07:50
|
![Avatar de McBlink](http://static.forosdelweb.com/customavatars/avatar158655_2.gif) | | | Fecha de Ingreso: noviembre-2006 Ubicación: $ARG->LaPampa()
Mensajes: 1.694
Antigüedad: 18 años, 2 meses Puntos: 23 | |
Re: cambiar color del texto al pasar por encima la tabla Buenas..
Miren.. yo creo que la manera mas sencilla seria usar la funcionOnMouseOver
aca te dejo la que hice y me decis si te anda..
<table border=1 cellpadding= cellspacing=0>
<tr>
<td onmouseover='this.style.background="#CCCCCC"'
onmouseout='this.style.background="#FFFFFF"'>
Home
</td>
</tr>
<tr>
<td onmouseover='this.style.background="#CCCCCC"'
onmouseout='this.style.background="#FFFFFF"'>
texto222222222222222222222
</td>
</tr>
<tr>
<td onmouseover='this.style.background="#CCCCCC"'
onmouseout='this.style.background="#FFFFFF"'>
Texto3
</td>
</tr>
</table> |