How do I remove an active outline from jquery accordion ?
Posted
by Ash
on Stack Overflow
See other posts from Stack Overflow
or by Ash
Published on 2010-01-18T14:30:01Z
Indexed on
2010/04/28
3:13 UTC
Read the original article
Hit count: 344
I am using Jquery Accordion. The active link has an outline. I have tried using css:
#accordion a:focus
{ outline: none; }
#accordion a:active
{outline: none; font-weight:bold;}
and also
#accordion a:-moz-any-link:focus
{ outline: none; }
None of these seem to work. Can anyone advise a setting or another option to remove the dotted outline around the active links?
© Stack Overflow or respective owner