“Cómo eliminar subrayar del enlace en HTML” Código de respuesta

Eliminar subrayado del hipervínculo

 a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }
k-vernooy

eliminar subrayado html

<a style="text-decoration: none;"></a>
Fragile Fish

Cómo eliminar subrayar del enlace en HTML

<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a href="" style="text-decoration: none;">Team</a>
   </p>
</body>
rabbit.sol

Cómo eliminar subrayar del enlace en HTML

<a href="http://yoursite.com/" style="text-decoration:none">yoursite</a>
Fancy Flamingo

Cómo eliminar subrayar del enlace en HTML

how to remove underline from a tag:

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Courageous Constrictor

Cómo eliminar subrayado del enlace

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Disturbed Dunlin

Respuestas similares a “Cómo eliminar subrayar del enlace en HTML”

Preguntas similares a “Cómo eliminar subrayar del enlace en HTML”

Más respuestas relacionadas con “Cómo eliminar subrayar del enlace en HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código