Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/09/2007, 18:22
escudo40
 
Fecha de Ingreso: enero-2007
Mensajes: 51
Antigüedad: 17 años, 3 meses
Puntos: 0
Re: hover dentro de atributo style

No cecí esto te sirva
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">

<html>
<head>

    <style type="text/css" media="all">
    a:link {
    color: #FF4000;
    text-decoration: none;
    }
    a:hover {
    color: #fff;
    text-decoration: none;
    }
    </style>

    <title></title>
</head>

<body>
<a href="" >link</a>
</body>
</html>