Skip to content

Instantly share code, notes, and snippets.

@trumball
Created September 9, 2013 17:16
Show Gist options
  • Save trumball/6498701 to your computer and use it in GitHub Desktop.
Save trumball/6498701 to your computer and use it in GitHub Desktop.
border-radius
/* Mixin */
.border-radius (@radius: 5px) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
/* Implementation */
#somediv {
.border-radius(20px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment