Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/12/2007, 08:17
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 2 meses
Puntos: 126
Cambiar color td

Hola, el problema que tengo y no que no logro solucionar es cambiar el color del TD cuando el puntero esta sobre el.

Esto es lo que tengo hecho

Código HTML:
<html>
<head>
<style type="text/css">
.seccion_par_autor {
background: #fff none repeat scroll 100%;
color: #59616e;
margin:3px;

.seccion_par_autor a:link, .seccion_par_autor a:visited { 
color: #000;
text-decoration: none;
}

.seccion_par_autor a:hover, .seccion_par_autor a:active {
color: #f49f00;
text-decoration: underline;
}

.td_spar {
font:13px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}

.td_spar:hover {
background: #eee none repeat scroll 0%;
}
</style>
</head>
<body>
<table border="0px">
<tr>
<tr>
<td class="seccion_par_autor td_spar"><a href="#"><strong>Una prueba</strong></a></td>
</td>
</tr>
</table>
</body>
</html> 
Gracias
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />