jeppeMedlem sedan dec. 2000111 inlägg
Om jag gjort så här i css-taggen:
<!--
a:link { text-decoration: none; color: black}
a:visited { text-decoration: none; color: black}
a:active { text-decoration: none; color: black}
a:hover { color: white}
-->
och sen vill att EN länk inte ska bli vit när man drar över den. Hur gör jag då??
frankofMedlem sedan jan. 20014 275 inlägg
classa den
<!--
a:link { text-decoration: none; color: black}
a:visited { text-decoration: none; color: black}
a:active { text-decoration: none; color: black}
a:hover.not{color:black}
a:hover { color: white}
-->
<a href="sida.html" class="not">länktext</a>
jeppeMedlem sedan dec. 2000111 inlägg