Skip to content

Instantly share code, notes, and snippets.

@nncl
Last active February 26, 2016 13:37
Show Gist options
  • Save nncl/12c72c400cb837bc9092 to your computer and use it in GitHub Desktop.
Save nncl/12c72c400cb837bc9092 to your computer and use it in GitHub Desktop.
Firefox Hacks

Firefox Hacks

More here - I and here - II.

/* Remove button padding in FF */
button::-moz-focus-inner {
    border:0;
    padding:0;
}

/* But is not complete for inputs */
input::-moz-focus-inner { 
	border: 0; 
	padding: 0; 
}

input::-moz-focus-inner { 
	border: 0; 
	padding: 0; 
	margin-top:-2px; 
	margin-bottom: -2px; 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment