Created
March 3, 2015 18:21
-
-
Save codenamejason/04bf3a93c8c104967c90 to your computer and use it in GitHub Desktop.
Corner Radius in CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Corner radius */ | |
.ui-corner-all, | |
.ui-corner-top, | |
.ui-corner-left, | |
.ui-corner-tl { | |
border-top-left-radius: 5px; | |
} | |
.ui-corner-all, | |
.ui-corner-top, | |
.ui-corner-right, | |
.ui-corner-tr { | |
border-top-right-radius: 5px; | |
} | |
.ui-corner-all, | |
.ui-corner-bottom, | |
.ui-corner-left, | |
.ui-corner-bl { | |
border-bottom-left-radius: 5px; | |
} | |
.ui-corner-all, | |
.ui-corner-bottom, | |
.ui-corner-right, | |
.ui-corner-br { | |
border-bottom-right-radius: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment