Skip to content

Instantly share code, notes, and snippets.

@wingsline
Created October 5, 2012 00:16
Show Gist options
  • Save wingsline/3837278 to your computer and use it in GitHub Desktop.
Save wingsline/3837278 to your computer and use it in GitHub Desktop.
LESS: Border radius mixin
.border-radius(@val) {
-webkit-border-radius: @val;
-moz-border-radius: @val;
border-radius: @val;
}
.border-radius(@val) {
-webkit-border-radius: @val;
-moz-border-radius: @val;
border-radius: @val;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment