Linkfarbe (a.link, a:visited, a.active) zuweisen..

Status
Nicht offen für weitere Antworten.

5noOPY

Mitglied
Hallo,

ich habe hier ein kleines Problem. Ich bin neu auf dem Gebiet CSS, und würde gerne diesem DIV Linkfarben zuweisen. Wie kann ich dies umsetzen

CSS:
.logo{
font-family:verdana, helvetica, sans-serif;
font-size:10px;
position:absolute; top:450px;left:5px;
text-align:center;
}

Vielen Dank im vorraus!

mfg

5noOPY
 
Hi!

Code:
.logo a:link, .logo a:visited {
color: red;
}

.logo a:hover {
color: yellow;
}

.logo a:active {
color: green;
}
 
Status
Nicht offen für weitere Antworten.
Zurück