“Como remover o sublinhado do link” Respostas de código

Remova o sublinhado do link CSS

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

Remova o sublinhado HTML

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

Como remover o sublinhado do link em 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

Como remover o sublinhado do link em html

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

Como remover o sublinhado do link

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

Como remover o sublinhado do link

a{
   text-decoration: none;
}
Glorious Gnat

Respostas semelhantes a “Como remover o sublinhado do link”

Perguntas semelhantes a “Como remover o sublinhado do link”

Procure respostas de código populares por idioma

Procurar outros idiomas de código