Skip to content

Instantly share code, notes, and snippets.

@stevenadams
Last active August 29, 2015 14:08
Show Gist options
  • Save stevenadams/a7ef0dfab30cda81e0bb to your computer and use it in GitHub Desktop.
Save stevenadams/a7ef0dfab30cda81e0bb to your computer and use it in GitHub Desktop.
Mixin for targeting Firefox
body {
height: 20px;
}
@-moz-document url-prefix() {
body {
height: 10px;
}
}
// ----
// Sass (v3.4.7)
// ----
@mixin firefox() {
@-moz-document url-prefix() {
@content;
}
}
body{
height: 20px;
@include firefox(){
height: 10px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment