Cita:
Iniciado por asitudela me gustaría q cuando pase por encima de mi link que está dentro de una celda, la celda se pondría en otro color, pero no sé como, me ayudan?
Espero q te sirva:
Código HTML:
<html>
<head>
<style type="text/css">
a:link { text-decoration:none;
background-color:#ffffff;
color:#000000;
}
a:hover{
text-decoration:underline;
background-color:#FF6600;
color:white;
font-weight:bold;
}
</style>
</head>
<body>
<table border=1 cellpadding="1" cellspacing="0">
<tr>
<td class="lala" id="celda1"><div align="center">
<a href="#">aaaaaaaaaaaaaaa</a></div></td>
</tr>
<tr>
<td width="105" class="lala" id="celda1"><div align="center">
<a href="#">aaaaaaaaaaaaaaa</a></div></td>
</tr>
</table>
</body>
</html>