“HTML Link Farbe” Code-Antworten

So entfernen Sie mit CSS die blaue Farbe blauer Farbe aus einem Tag

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

HTML Link Farbe

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

Standard -Link -Farbe in HTML

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

HTML -Links - verschiedene Farben

<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

Ähnliche Antworten wie “HTML Link Farbe”

Fragen ähnlich wie “HTML Link Farbe”

Weitere verwandte Antworten zu “HTML Link Farbe” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen