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