Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question
8  
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

16 Answers

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

No need to define a selector.

:focus {outline:none;}
::-moz-focus-inner {border:0;}
share|improve this answer
2  
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
1  
Beautiful, worked perfectly. – chainwork Jul 17 '12 at 19:03
This one is best! The accepted answer is only for <button>, not <a> nor <input> – Bondye Feb 12 at 11:16

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;	
    }
share|improve this answer
:focus, :active {
outline: 0;
border: 0;
}
share|improve this answer
none of the others worked for me! – Jamie Hutber Jan 1 at 1:18
Worked like a charm for a select option box i was using – Muhammad Ahsan May 1 at 10:55

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!

share|improve this answer
3  
Simply a { outline: none; } should be sufficient for links. – grantman16 Jan 23 '12 at 23:18
here the !important did the trick, the other solutions didn't have that and didn't work. for me. – Cristiano Fontes Mar 19 '12 at 3:54

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

share|improve this answer

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.

share|improve this answer

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;
}
share|improve this answer

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.

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

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

share|improve this answer

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} 
share|improve this answer
3  
Whats wrong with removing it? – Nathan Sep 6 '11 at 23:32

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

share|improve this answer

There is many solutions found on the web for this, many of which work, but to force this, so that absolutely nothing can highlight/focus once a use the following:

::-moz-focus-inner, :active, :focus {
    outline:none;
    border:0;
    -moz-outline-style: none;
}

This just adds that little bit extra security & seals the deal!

share|improve this answer

Nowadays, the CSS property is called outline-style in Firefox:

a {
    outline-style: none;
}
share|improve this answer

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...

share|improve this answer

just add this onfocus="blur()"

ex.

<input id="sb" width=212px type="submit" name="submitBtn"  onfocus="blur()"  value="<?php echo $buttontext ?>"/>
share|improve this answer
This is a bad idea with regard to Usability. This will give no sign to the user that the button has gained focus. – Web_Designer Apr 19 '12 at 7:01

protected by user7116 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.

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