Created
February 10, 2016 19:24
-
-
Save Fresh-Dev/5db7a5f71acd371b78a0 to your computer and use it in GitHub Desktop.
Round Corners
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
#container { | |
-webkit-border-radius: 4px 3px 6px 10px; | |
-moz-border-radius: 4px 3px 6px 10px; | |
-o-border-radius: 4px 3px 6px 10px; | |
border-radius: 4px 3px 6px 10px; | |
} | |
/* alternative syntax broken into each line */ | |
#container { | |
-webkit-border-top-left-radius: 4px; | |
-webkit-border-top-right-radius: 3px; | |
-webkit-border-bottom-right-radius: 6px; | |
-webkit-border-bottom-left-radius: 10px; | |
-moz-border-radius-topleft: 4px; | |
-moz-border-radius-topright: 3px; | |
-moz-border-radius-bottomright: 6px; | |
-moz-border-radius-bottomleft: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment