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

Remova o sublinhado do hiperlink

 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 em html

how to remove underline from a tag:

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

Como remover o sublinhado do link

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

Respostas semelhantes a “Como remover o sublinhado do link em html”

Perguntas semelhantes a “Como remover o sublinhado do link em html”

Mais respostas relacionadas para “Como remover o sublinhado do link em html” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código