Skip to content

Instantly share code, notes, and snippets.

@dhunmoon
Last active September 8, 2015 09:43
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 dhunmoon/6b39c30c62412703acdd to your computer and use it in GitHub Desktop.
Save dhunmoon/6b39c30c62412703acdd to your computer and use it in GitHub Desktop.
CSS: Border Radius Separate Values
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
border-top-left-radius:5px;
border-top-right-radius:5px;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
/*
For IE8 or Less:
http://www.hongkiat.com/blog/css3-border-radius-in-internet-explorer/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment