Not all links receive the pseudo class a:link.
Setting a css property in the following way:
a {cursor: default;}
a:link {cursor:pointer;}
The Goal was to have Anchors not display the "Hand" cursor while
Hyperlinks should display it.
This results in random display of the "Hand" cursor for links. I can't
see any pattern in this. Absolute and relative urls show this
behavior.
Even a link to the same page with just a different hash results in
different display.
I don't know if anyone has experienced a similar problem or if this is
a known bug. A quick search didn't turn out anything.
Regards, Torsten
Visited links match :visited rather than :link.
-David
--
L. David Baron http://dbaron.org/
Mozilla Corporation http://www.mozilla.com/
thanks a lot, that explains it indeed...
> Visited links match :visited rather than :link.
Just to clarify. Visited links don't match :link at all? Wouldn't it
be just like overriding certain styles with :visited?