subrayado - quitar underline link html
Quitar subrayado con atributo href (1)
Agregue 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 estilo 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 estilo externa :
<html>
<head>
<link rel="Stylesheet" href="stylesheet.css" />
</head>
<body>
<a href="xxx.html">goto this link</a>
</body>
</html>
stylesheet.css:
a {
text-decoration:none;
}
Posible duplicado:
¿Cómo eliminar el subrayado de los anclajes (enlaces)?
En el siguiente código a continuación, el enlace queda subrayado cuando uso el atributo href.
<html>
<body>
<a href="xxx.html">goto this link</a>
</body>
</html>
Quiero que el enlace se asocie con esa etiqueta, pero que no se subraye. ¿Cómo puedo hacer eso? Gracias de antemano por tu ayuda.