“Cómo eliminar subrayado del enlace” Código de respuesta

Eliminar subrayado del enlace CSS

 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 subrayado del enlace

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

Cómo eliminar subrayado del enlace

a{
   text-decoration: none;
}
Glorious Gnat

Respuestas similares a “Cómo eliminar subrayado del enlace”

Preguntas similares a “Cómo eliminar subrayado del enlace”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código