Ver Mensaje Individual
  #6 (permalink)  
Antiguo 14/01/2005, 15:42
Matthew_182
 
Fecha de Ingreso: diciembre-2004
Ubicación: En mi ksa
Mensajes: 267
Antigüedad: 19 años, 4 meses
Puntos: 0
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> 
__________________
--------------------------------------------------
[::Matthew Beyer::]
MaEsTrOsWeB
Chile
--------------------------------------------------

Última edición por Matthew_182; 14/01/2005 a las 20:42