Eliminando el subrayado con el atributo href [duplicar]


Posible Duplicado:
¿Cómo eliminar el subrayado para anclas (enlaces)?

En el siguiente código, el enlace se subraya cuando uso el atributo href.

<html>
<body>
<a href="xxx.html">goto this link</a>
</body>
</html>

Quiero que el enlace esté asociado con esa etiqueta, pero no subrayado. ¿Cómo puedo hacer eso? Gracias de antemano por su ayuda.

Author: Community, 2012-09-21

1 answers

Añade un estilo con el atributo text-decoration:none;:

Hay varias maneras diferentes de hacer esto.

Estilo en línea:

<a href="xxx.html" style="text-decoration:none;">goto this link</a>

Hoja de estilos en línea:

<html>
<head>
<style type="text/css">
   a {
      text-decoration:none;
   }
</style>
</head>
<body>
<a href="xxx.html">goto this link</a>
</body>
</html>

Hoja de estilos externa :

<html>
<head>
<link rel="Stylesheet" href="stylesheet.css" />
</head>
<body>
<a href="xxx.html">goto this link</a>
</body>
</html>

hoja de estilo.css:

a {
      text-decoration:none;
   }
 82
Author: Curt,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-09-21 10:14:03