Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Created June 30, 2013 17:43
Show Gist options
  • Save jonbellah/5896122 to your computer and use it in GitHub Desktop.
Save jonbellah/5896122 to your computer and use it in GitHub Desktop.
Border Radius Sass Mixin
@mixin border-radius($property) {
border-radius: $property;
-o-border-radius: $property;
-moz-border-radius: $property;
-webkit-border-radius: $property;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment