up vote 98 down vote favorite
57
share [g+] share [fb]

I can make Firefox not display the ugly dotted focus outlines on links with this:

a:focus { 
    outline: none; 
}

But how can I do this for <button> tags as well? When I do this:

button:focus { 
    outline: none; 
}

the buttons still have the dotted focus outline when I click on them.

(and yes, I know this is a usability issue, but I would like to provide my own focus hints which are appropriate to the design instead of ugly grey dots)

link|improve this question

80% accept rate
4  
The answer marked correct is incorrect. The correct answer is: stackoverflow.com/questions/71074/… – eyelidlessness Nov 14 '09 at 1:15
1  
thanks, finally saw that and marked it the answer – Edward Tanguay Jul 22 '10 at 0:57
1  
It seems like in Firefox 4, elements are no longer getting an outline by default when being clicked, but only when receiving keyboard focus. – Geert Apr 25 '11 at 7:56
feedback

protected by sixlettervariables Oct 11 '11 at 19:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

15 Answers

up vote 186 down vote accepted
button::-moz-focus-inner {
  border: 0;
}
link|improve this answer
18  
It works! You are my sunshine... – Brandon Thomson Oct 20 '09 at 6:08
2  
Yea it works for me too! Now how can it be done for selects ? – 7wp Feb 3 '10 at 19:54
14  
That's some wild CSS... – Tom Feb 16 '10 at 21:09
4  
Note that this also works for input (e.g. input::-moz-focus-inner {border:0;}) – El Yobo May 31 '10 at 7:03
5  
Purpose of the double colon: (CSS3 notation) evotech.net/blog/2007/05/… – sholsinger Nov 3 '10 at 19:09
show 3 more comments
feedback

If you prefer to use css to get rid of the dotted outline:

/*for FireFox*/
    input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner
    {   
        border : 0px;
    } 
/*for IE8 */
    input[type="submit"]:focus, input[type="button"]:focus
    {     
        outline : none;	
    }
link|improve this answer
feedback

No need to define a selector.

:focus {outline:none;}
::-moz-focus-inner {border:0;}
link|improve this answer
Thanks, this worked for me when the correct answer didn't. I must have been using the wrong selector. – GreenRails Oct 8 '10 at 18:27
Thanks for this, will this remove it on links and buttons too? – Nathan Sep 6 '11 at 23:28
feedback

There's no way to remove these dotted focus in Firefox using CSS.

If you have access to the computers where your webapplication works, go to about:config in Firefox and set browser.display.focus_ring_width to 0. Then Firefox won't show any dotted borders at all.

The following bug explains the topic: https://bugzilla.mozilla.org/show_bug.cgi?id=74225

link|improve this answer
3  
see answer by polvero – Moak Feb 23 '10 at 7:42
feedback

I don't know why peopple create wierd rules, this is the first time I have to vote and I can't so I will copy chinkchink answeer which is the correct one:

If you prefer to use css to get rid of the dotted outline:

/*for FireFox*/
    input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner
    {   
        border : 0px;
    } 
/*for IE8 */
    input[type="submit"]:focus, input[type="button"]:focus
    {     
        outline : none; 
    }
link|improve this answer
It works for me, thanks! – Alex Ivasyuv Jul 6 '10 at 11:16
Very nice solution .. thank you working fine .. – Viswanathan Iyer Nov 12 '10 at 17:31
Wow... I thought you have to use JavaScript to remove it in IE. Thanks! – Nathan Sep 6 '11 at 23:29
feedback

If you have a border on a button and want to hide the dotted outline in Firefox without removing the border (and hence it's extra width on the button) you can use:

.button::-moz-focus-inner {
    border-color: transparent;
}
link|improve this answer
feedback
:focus, :active {
outline: 0;
border: 0;
}
link|improve this answer
feedback

You might want to intensify the focus rather than get rid of it.

button::-moz-focus-inner {border: 2px solid transparent;}

button:focus::-moz-focus-inner {border-color: blue} 
link|improve this answer
Whats wrong with removing it? – Nathan Sep 6 '11 at 23:32
feedback

It looks like the only way to achieve this is by setting

browser.display.focus_ring_width = 0

in about:config on a per browser basis.

link|improve this answer
feedback

I think you should really know what you're doing by removing the focus outline, because it can mess it up for keyboard navigation and accessibility. If you need to take it out because of a design issue, add a :focus state to the button that replaces this with some other visual cue, like, changing the border to a brighter color or something like that.

Sometimes I feel the need to take that annoying outline out, but I always prepare an alternate focus visual cue.

And NEVER use the blur() js function. Use the ::-moz-focus-inner pseudo class.

link|improve this answer
feedback
button::-moz-focus-inner { border: 0; }

Where button can be whatever CSS selector for which you want to disable the behavior.

link|improve this answer
feedback

The below worked for me in case of LINKS, thought of sharing - in case someone is interested.

a, a:visited, a:focus, a:active, a:hover{
    outline:0 none !important;
}

Cheers!

link|improve this answer
1  
Simply a { outline: none; } should be sufficient for links. – grantman16 Jan 23 at 23:18
feedback

You can try button::-moz-focus-inner {border: 0px solid transparent;} in your CSS.

link|improve this answer
feedback

I think you can do this with Javascript's blur() function, but keep in mind, it is a common usability concept in modern web browsers, to which users may have become accustomed.

Although I had a discussion with my professor at university, if disabling link focus is a good idea from a designers perspective...

link|improve this answer
feedback

just add this onfocus="blur()"

ex.

<input id="sb" width=212px type="submit" name="submitBtn"  onfocus="blur()"  value="<?php echo $buttontext ?>"/>
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.