Skip to content

Instantly share code, notes, and snippets.

@giginet
Created December 18, 2011 14:45
Show Gist options
  • Select an option

  • Save giginet/1493606 to your computer and use it in GitHub Desktop.

Select an option

Save giginet/1493606 to your computer and use it in GitHub Desktop.
@mixin crossbrowser($attr, $value) {
#{$attr}: $value;
-moz-#{$attr}: $value;
-webkit-#{$attr}: $value;
}
@giginet
Copy link
Author

giginet commented Dec 18, 2011

div.hoge {
    @include crossbrowser(box-shadow, 1px 1px 2px #222);
}
div.hoge {
    box-shadow: 1px 1px 2px #222;
    -moz-box-shadow: 1px 1px 2px #222;
    -webkit-box-shadow: 1px 1px 2px #222;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment