Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/04/2006, 09:05
Avatar de causita
causita
 
Fecha de Ingreso: mayo-2002
Ubicación: Lima-Perú
Mensajes: 2.043
Antigüedad: 21 años, 11 meses
Puntos: 8
Prueba con esto entre <HEAD> y </HEAD> , puedes usar mas variables
Cita:
<style type="text/css">
A:link {text-decoration: none; color: red}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {font-weight:bold; color: red;}
</style>
O sino éste otro
Cita:
<html>
<head>
<style type="text/css">
.class1 A:link {text-decoration: none}
.class1 A:visited {text-decoration: none}
.class1 A:active {text-decoration: none}
.class1 A:hover {text-decoration: underline; color: red;}

.class2 A:link {text-decoration: underline overline}
.class2 A:visited {text-decoration: underline overline}
.class2 A:active {text-decoration: underline overline}
.class2 A:hover {text-decoration: underline; color: green;}
</style>

</head>

<body>
TIPO DE LINKS USANDO .CLASS1
<br>
<span class="class1">
<a href="http://www.yahoo.com">YAHOO</a>
<br>
<a href="http://www.google.com">GOOGLE</a>
</span>
<br>
<br>
TIPO DE LINKS USANDO .CLASS2
<br>
<span class="class2">
<a href="http://www.yahoo.com">YAHOO</a>
<br>
<a href="http://www.google.com">GOOGLE</a>
</span>
</body>
</html>
Espero te sea de ayuda.

salu2
__________________
|| no hay pregunta tonta....lo q hay son tontos q no preguntan || d-.-b

El Causita

Última edición por causita; 13/04/2006 a las 09:11