Är det nån som vet varför A.*:hover i stylesheet´en försvinner efter länken blivit besökt?? du får ha såhär det gör det inte för mej... > <b>du får ha såhär</b>Stylesheet
Sv: Stylesheet
<code>
A:link { }
A:active { }
A:visited { }
A:hover { }
</code>
Lycka till!!
mvh
//JonnieSv: Stylesheet
vad har du för färger på mouseover effekten och på visited grejen =)??Sv: Stylesheet
<code>
A:link { }
A:active { }
A:visited { }
A:hover { }
</code>
Nej, det stämmer inte. Rätt ordning är:
<code>
A:link { color: red } /* unvisited links */
A:visited { color: blue } /* visited links */
A:hover { color: yellow } /* user hovers */
A:active { color: lime } /* active links */
</code>
"Note that the A:hover must be placed after the A:link and A:visited rules, since otherwise the cascading rules will hide the 'color' property of the A:hover rule. Similarly, because A:active is placed after A:hover, the active color (lime) will apply when the user both activates and hovers over the A element."
5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus
<URL:http://www.w3.org/TR/REC-CSS2/selector.html#dynamic-pseudo-classes>