Skip to content

Instantly share code, notes, and snippets.

@hjortureh
Created October 23, 2012 15:11
Show Gist options
  • Save hjortureh/3939318 to your computer and use it in GitHub Desktop.
Save hjortureh/3939318 to your computer and use it in GitHub Desktop.
Vendor prefixing with SASS
@mixin border-radius($argument) {
-webkit-border-radius: $argument;
-ms-border-radius: $argument;
-moz-border-radius: $argument;
-o-border-radius: $argument;
border-radius: $argument;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment