Skip to content

Instantly share code, notes, and snippets.

@shotastage
Last active September 8, 2016 01:44
Show Gist options
  • Save shotastage/9cd74359d6ee29d56a0fad39ee9f4daa to your computer and use it in GitHub Desktop.
Save shotastage/9cd74359d6ee29d56a0fad39ee9f4daa to your computer and use it in GitHub Desktop.
Sass mixin sample
@mixin prefix($prop, $arg...) {
-webkit-#{$prop}: $arg;
-moz-#{$prop}: $arg;
-ms-#{$prop}: $arg;
#{$prop}: $arg;
}
.button {
@include prefix(appearance, none);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment