Skip to content

Instantly share code, notes, and snippets.

@paulund
Last active October 12, 2015 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulund/3989393 to your computer and use it in GitHub Desktop.
Save paulund/3989393 to your computer and use it in GitHub Desktop.
Removes inner padding and border in FF3+
/*
* Removes inner padding and border in FF3+
* www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment