Foros del Web

Foros del Web (http://www.forosdelweb.com/)
-   CSS (http://www.forosdelweb.com/f53/)
-   -   Tipos de text-decoration (http://www.forosdelweb.com/f53/tipos-text-decoration-333181/)

indie81 13/09/2005 02:39

Tipos de text-decoration
 
Quiero hacer enlaces que tengan un subrayado a rayas, y que cuando se ponga el puntero encima se subraye totalmente, estilo la pagina

http://www.iwant2know.org/

¿como es la propiedad de text-decoration para el subrayado a rayas?

seoista 13/09/2005 03:26

Hola indie81
Código:

<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>

Saludos :adios:


La zona horaria es GMT -6. Ahora son las 23:14.

Desarrollado por vBulletin® Versión 3.8.7
Derechos de Autor ©2000 - 2026, Jelsoft Enterprises Ltd.