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

See this code example: http://jsfiddle.net/Z2BMK/

Chrome/IE8 look like this enter image description here Firefox looks like this enter image description here

My CSS is

button {
    padding:0;
    background:#080;
    color:white;
    border:solid 2px;
    border-color: #0c0 #030 #030 #0c0;
    margin:0;
}

How can I change the code sample to make the button the same in both browsers? I do not want to use JavaScript based hyperlinks because they do not work with space bar on keyboard and it has to have an href URL which is not a clean way to handle things.

My solution, as of Firefox 13

button::-moz-focus-inner { margin: -1px; padding: 0; }

share|improve this question

2 Answers

up vote 58 down vote accepted

Add this:

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

http://jsfiddle.net/thirtydot/Z2BMK/1/

Consider whether or not to include the border rule above; including it gets rid of the dotted outline when the button is active. Whether you want that outline is up to you.

share|improve this answer
1  
+1 for the comment about the focus outline – George Bailey Apr 1 '11 at 22:35
4  
To use a Chrome-style focus glow in Firefox, use button{background:/*Something here*/} button:focus{-moz-box-shadow:0 0px 3px #C80;}. This compensates for not having the dotted line and gives the browser consistency I was after. – George Bailey Apr 19 '11 at 21:48
This is EACTLY what I needed. Thanks! – Abel Martin Oct 12 '11 at 23:37
4  
To fix it on input elements aswell add input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner – Stefan Aug 24 '12 at 14:05
Awesome! Thank you! This helped! – SoWeLie Oct 5 '12 at 13:46
show 8 more comments

To fix it on input elements as well add

input[type="reset"]::-moz-focus-inner, 
input[type="button"]::-moz-focus-inner, 
input[type="submit"]::-moz-focus-inner, 
input[type="file"] > input[type="button"]::-moz-focus-inner

is simple perfect!

share|improve this answer
Do you have any knowledge of the browser compatibility of this solution? – George Bailey Nov 16 '12 at 13:42
1  
Isn't input[type="file"] > input[type="button"]::-moz-focus-inner redundant since you already added input[type="button"]::-moz-focus-inner, or is that not your experience? Do you know? – George Bailey Nov 16 '12 at 13:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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