Skip to content

Instantly share code, notes, and snippets.

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