Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/02/2011, 19:55
Avatar de neb642
neb642
 
Fecha de Ingreso: noviembre-2010
Ubicación: Argentina
Mensajes: 29
Antigüedad: 13 años, 5 meses
Puntos: 3
Mostrar bordes table onMouseover

Bueno necesito lograr basicamente que onmouseover mostrar los bordes superior e inferior de la celda en la cual este situado el cursor (valga la redundancia)

He hecho:

Cita:
.tablaselv {
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #FFFFFF;
border-right-color: #FFFFFF;
border-bottom-color: #FFFFFF;
border-left-color: #FFFFFF;
}
.tablaselv:hover {
border-top-style: solid;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-top-color: #FF0000;
border-right-color: #FF0000;
border-bottom-color: #FF0000;
border-left-color: #FF0000;
}
Cita:
<table width="175" border="0">
<tr>
<td class="tablaselv">prueba</td>
</tr>
<tr>
<td class="tablaselv">loca</td>
</tr>
</table>
aclaro que el fondo de la página es blanco. Saludos