“CSS -Links” Code-Antworten

Text unterstreichen Hover -CSS

a:hover {
  text-decoration: underline;
}
Giamblers

So ändern Sie die Hyperlinkfarbe in CSS

a {
  background-color: red;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
}
Yours Kindly

CSS -Links

/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}
naly moslih

Ähnliche Antworten wie “CSS -Links”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen