Skip to content

Instantly share code, notes, and snippets.

@klickgists
Created December 12, 2012 12:46
Show Gist options
  • Save klickgists/4267469 to your computer and use it in GitHub Desktop.
Save klickgists/4267469 to your computer and use it in GitHub Desktop.
Sass: mixin border radius
@mixin border_radius($radius) {
:-webkit-border-radius: $radius;
:-moz-border-radius: $radius;
:border-radius: $radius;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment