In firefox 3.6 you could use ::-moz-focus-inner {border:0;padding:0;margin:0;} to remove those default margins and paddings forms.css added.

How can I reset this in Firefox 4? I've been searching for any .css files inside the install directory that could add styles to my button but can't find any for ff4 - the button still gets that annoying 1px top padding that won't allow the text to align to vertical middle.

EDIT: I use a reset stylesheet so no need to reset styles. It's a browser stylesheet that's messing here.

link|improve this question

feedback

4 Answers

up vote 18 down vote accepted

I actually found the solution myself.

In your url field type: resource://gre-resources/forms.css - this will open forms.css for FF4 - and search for the following selector

button::-moz-focus-inner,
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

Now just put that in your main stylesheet like:

button::-moz-focus-inner,
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 {border:0;padding:0;margin:0;}

It shouldn't be overriding your css anymore. Also note that if you haven't defined any font style for your inputs FF won't inherit body font styling.

link|improve this answer
Thank you. Sadly, finding those css resource files is no longer applicable in Firefox 6; however, this resolved my issue still. – Patrick Robert Shea O'Connor Sep 26 '11 at 20:38
1  
@PatrickRobertSheaO'Connor In ff6 it got changed to resource://gre-resources/html.css – easwee Oct 12 '11 at 13:13
Awesome, thanks! – Patrick Robert Shea O'Connor Oct 13 '11 at 18:37
+1 so many thanks... it was too frustrating trying to figure out the persistent border.. – Gaby aka G. Petrioli Jan 3 at 14:17
Thanks, was burned by this myself. A minor note though: margin:0 seems unnecessary as Firefox doesn't define it itself. – Damir Zekić Feb 17 at 12:35
show 2 more comments
feedback

try setting it's values to undefined (border:undefined etc). not sure here, but it worked for me when I had a similiar problem.

link|improve this answer
Tried this but no good. – easwee Mar 30 '11 at 13:09
feedback

just use a css reset stylesheet, that will reset all the default css for most browsers

http://meyerweb.com/eric/tools/css/reset/

or read this stackeoverflow Q&A

Best css reset

link|improve this answer
No it won't. I'm using a reset stylesheet. Read the question again to get what I'm reffering to. – easwee Mar 28 '11 at 13:57
yes but even if you find that css file in firefox the change will still only apply to you and nobody else – krike Mar 28 '11 at 14:00
It will apply to everyone once I find which selector is adding that and I override it with a more specified selector in my main stylesheet. It always worked in all FF versions till now. – easwee Mar 28 '11 at 14:04
oh yes I see. Well looks like you found it :) – krike Mar 28 '11 at 14:34
Yeah - maybe my question was bit unclear - edited few words for future if anyone searches for this. – easwee Mar 28 '11 at 14:39
feedback

Twitter Bootstrap does it like this in its reset.less (which is a more barebones version of normalize.css):

button::-moz-focus-inner,
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
  padding: 0;
  border: 0;
}

As an aside, Bootstrap's reset.less is probably a more reliable and perennial solution to achieve form cross-browser-ness than maintaining your own rules. It's much more complete than Meyer's reset.css, but more minimalist than normalize.css.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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