Skip to content

Instantly share code, notes, and snippets.

@pertrai1
Created April 26, 2012 10:45
Show Gist options
  • Save pertrai1/2498724 to your computer and use it in GitHub Desktop.
Save pertrai1/2498724 to your computer and use it in GitHub Desktop.
All rounded corners
@mixin rounded_corners($tleft, $tright, $bright, $bleft) {
-moz-border-radius: $tleft $tright $bright $bleft;
-webkit-border-radius: $tleft $tright $bright $bleft;
-khtml-border-radius: $tleft $tright $bright $bleft;
-o-border-radius: $tleft $tright $bright $bleft;
border-radius: $tleft $tright $bright $bleft;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment