Skip to content

Instantly share code, notes, and snippets.

@moresheth
Created February 9, 2012 15:08
Show Gist options
  • Save moresheth/1780549 to your computer and use it in GitHub Desktop.
Save moresheth/1780549 to your computer and use it in GitHub Desktop.
Mixin Example
@mixin border_radius($radius: 10px) {
-webkit-border-radius: $radius;
-khtml-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
-o-border-radius: $radius;
border-radius: $radius;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment