link class?
Davs.Jeg har følgende css-kode til mine links:
a:link {
color : #2F415C;
text-decoration : none;
}
a:visited {
color : #2F415C;
text-decoration : none;
}
a:hover {
color : #89A4CC;
text-decoration : none;
}
a:active {
color : #2F415C;
text-decoration : none;
}
MEN jeg vil ikke have at alle mine links har samme farve, så derfor har jeg givet nogle af mine link en class="link2".
-Nu er spørgsmålet så bare, hvordan jeg får det ind i ovenstående css-kode???
-På forhånd tak.