Hi list

How can I avoid that modern browsers displays hover-color
on named anchors?



When I use it the traditional way, all the anchors get a yellow
background, which I don't want.

a:link, a:active {
    background: #white;
    }

a:hover {
    background: #yellow;
    }


<a [name='top' | id='top']> . . .  </a>



So I tried this:

:link, :active {
    background: #white;
    }
:hover {
    background: #yellow;
    }


It seems to work, but I don't know, whether this is a 'official' way
to achieve what I intend.


I wonder, if somebody could give me any background information.



Thanks in advance,
Uwe Kaiser


--

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to