Skip to content

Instantly share code, notes, and snippets.

@sadaco
Created January 17, 2012 00:05
Show Gist options
  • Select an option

  • Save sadaco/1623726 to your computer and use it in GitHub Desktop.

Select an option

Save sadaco/1623726 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 */
#main {
.border-radius(3px);
}
#sec{
.border-radius;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment