Skip to content

Instantly share code, notes, and snippets.

@sivakumar-kailasam
Last active October 4, 2015 06:27
Show Gist options
  • Save sivakumar-kailasam/2592846 to your computer and use it in GitHub Desktop.
Save sivakumar-kailasam/2592846 to your computer and use it in GitHub Desktop.
Mozilla specific CSS
/* Default for all browsers */
.fancyDiv {
width: 50px;
}
/*This will work for firefox*/
@-moz-document url-prefix() {
.fancyDiv {
width: 55px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment