hi
ich hab eine frage zu css bzw. zu pseudoklassen.
ich brauche für unsere seite 2 verschiedene linkfarben.
ich hab mich ein bissle kundig gemacht und schnell die pseudoklassen
gefunden womit man so was realisieren kann.
problem ist aber das es bei mir nicht funktioniert.
eigentlich sollten die beiden test-links unterscheidliche farben haben...
aber es funktioniert nicht.
woran kann das liegen?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13: |
// CSS-Datei
a:link { color:#339999; text-decoration:none ; font-weight:bold; }
a:hover { color:#003333; text-decoration:none; font-weight:bold; }
a:active { color:#006666; text-decoration:none; font-weight:bold; }
a:visited { color:#006666; text-decoration:none; font-weight:bold; }
a.test:link { color:#FF00FF; text-decoration:none ; font-weight:bold; }
a.test:hover { color:#333333; text-decoration:none; font-weight:bold; }
a.test:active { color:#006666; text-decoration:none; font-weight:bold; }
a.test:visited { color:#006666; text-decoration:none; font-weight:bold; }
|
1:
2:
3:
4:
5:
6:
7:
8:
9:
10: |
// HTML-Datei
testlink-1
|
danke keeper