http://www.iwant2know.org/
¿como es la propiedad de text-decoration para el subrayado a rayas?
|
|
#1 (permalink) |
![]() Fecha de Ingreso: octubre-2004
Ubicación: Zaragoza
Mensajes: 175
|
http://www.iwant2know.org/ ¿como es la propiedad de text-decoration para el subrayado a rayas? |
|
|
|
|
|
#2 (permalink) |
![]() Fecha de Ingreso: septiembre-2003
Ubicación: Pues leyéndote
Mensajes: 837
|
Hola indie81
Código:
Saludos <html>
<head>
<style>
a:link
{color: #00008B;
border-bottom:1px dotted;
text-decoration: none;
font-family: verdana;
font-size: 12px;
font-weight: normal;}
a:visited
{color: #00008B;
text-decoration: none;
font-family: verdana;
font-size: 12px;
font-weight: normal;}
a:hover
{color: #00008B;
border-bottom:1px none;
text-decoration: underline;
font-family: verdana;
font-size: 12px;
font-weight: normal;}
a:active
{color: #008000;
text-decoration: none;
font-family: verdana;
font-size: 12px;
font-weight: normal;}
</style>
</head>
<body>
<a href="http://www.forosdelweb">Foros del Web</a>
</body>
</html>
![]() |
|
|
|