Skip to content

Instantly share code, notes, and snippets.

@adamstac
Created May 31, 2009 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamstac/120714 to your computer and use it in GitHub Desktop.
Save adamstac/120714 to your computer and use it in GitHub Desktop.
=rounded(!pixels)
border-radius = !pixels
-moz-border-radius = !pixels
-webkit-border-radius = !pixels
=rounded_top(!pixels)
border-top-left-radius = !pixels
-moz-border-radius-topleft = !pixels
-webkit-border-top-left-radius = !pixels
border-top-right-radius = !pixels
-moz-border-radius-topright = !pixels
-webkit-border-top-right-radius = !pixels
=rounded_bottom(!pixels)
border-bottom-left-radius = !pixels
-moz-border-radius-bottomleft = !pixels
-webkit-border-bottom-left-radius = !pixels
border-bottom-right-radius = !pixels
-moz-border-radius-bottomright = !pixels
-webkit-border-bottom-right-radius = !pixels
=rounded_top_left(!pixels)
border-top-left-radius = !pixels
-moz-border-radius-topleft = !pixels
-webkit-border-top-left-radius = !pixels
=rounded_top_right(!pixels)
border-top-right-radius = !pixels
-moz-border-radius-topright = !pixels
-webkit-border-top-right-radius = !pixels
=rounded_bottom_left(!pixels)
border-bottom-left-radius = !pixels
-moz-border-radius-bottomleft = !pixels
-webkit-border-bottom-left-radius = !pixels
=rounded_bottom_right(!pixels)
border-bottom-right-radius = !pixels
-moz-border-radius-bottomright = !pixels
-webkit-border-bottom-right-radius = !pixels
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment