Previous Message
Next Message

Problem with a:hover

Sent by David Laakso on 3 June 2006 22:10


Click This IT Solutions wrote:
> I have a problem on my first CSS layout/design. The one thing I'm struggling
> with is to get the a:hover to work. ...]
> The site is at www.989studiowebhosting.com and the CSS file is
> www.989studiowebhosting.com/989style.css
I think you've got a human bug, Rudy-- you have #CCCCCC for color and 
#CCCCCC for background-color in the hover ruleset. Change the color to 
fuchsia and see if it comes up on hover:
a:hover { 
    color: #CCCCCC;<<<<<<< try color: fuchsia;
    background-color: #CCCCCC;
}
Something to keep in mind is that a link can be in more than one state 
at the same time(for example: /active/ and /hover/ at the same time); 
consequently, it is necessary to list the rules in this order in your 
style sheet:
a:link
a:visited
a:focus
a:hover
a:active
Thimk: LVFHA.
Best,
~davidLaakso












-- 
http://www.dlaakso.com/gustave/

______________________________________________________________________
css-discuss [EMAIL-REMOVED]]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
Previous Message
Next Message

Possibly related: