• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Links in CSS

Status
Für weitere Antworten geschlossen.

Geltos

Mitglied
Momentan habe ich die Linkformation in meiner CSS Datei so:

Code:
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black}
a:hover {text-decoration: underline overline; color: #475159}
a:active {text-decoration: underline overline; color: #475159}

jetzt will ich aber, dass ein bestimmter bereich andere Linksformationen hat. Ich habe es mit

.formation {
a:link {text-decoration: none; color: black;}
a:visited {text-decoration: none; color: black}
a:hover {text-decoration: underline overline; color: #475159}
a:active {text-decoration: underline overline; color: #475159} }

ausprobiert, dies funktioniert allerdings nicht (ich denke weil zu viele {} klammern vorhanden sind). Wie geht es anders?
 
Code:
.link1:hover { ... }

<a href="#" class="link1">..</a>
 
Oder einfach

Code:
a.class1:link, a.class1:visited, a.class1:focus {     }

'dementius
 
Und noch was:
Code:
a.formation:link, a.formation:visited {text-decoration: none; color: black;}
a.formation:hover, a.formation:active {text-decoration: underline overline; color: #475159;}
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben