“cor html link” Respostas de código

Como remover o link Blue Color de uma tag usando CSS

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

cor html link

<a href="Link Here" style="color: Color Here"><b>Link Name</b></a> <!--- You dont need the bold tags btw ---!>
BreezeCodes

cor de link padrão em html

:link { color: #0000EE; }
:visited { color: #551A8B; }
Unusual Unicorn

Links HTML - cores diferentes

<style>
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
</style>
naly moslih

Respostas semelhantes a “cor html link”

Perguntas semelhantes a “cor html link”

Mais respostas relacionadas para “cor html link” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código