So, please, please, if you want to make your sites more accessible to keyboard users, add :focus and :active rules to match your :hover rule.
ok, I will :)
a:focus {color: #346095; background-color:#fff;}
a:hover {color: #346095; background-color:#fff;}
a:active {color: #346095; background-color:#fff;}
BTW: It would be better to write:
a:focus, a:hover, a:active {color: #346095; background: #fff;}It is simply shorter, more compact form. Some perfectionists prefer shorthand background property, because there is slight chance that background-color alone might not work if user stylesheet defines background-image...
-- regards, Kornel Lesiński
****************************************************** The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
