Created
May 31, 2011 09:52
-
-
Save IbnSaeed/1000250 to your computer and use it in GitHub Desktop.
CSS Rounded 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
.round_corners { | |
margin-right: 10px; | |
padding: 10px; | |
width: 80px; | |
-moz-border-radius: 35px; | |
-khtml-border-radius: 35px; | |
-webkit-border-radius: 35px; | |
behavior: url('border-radius.htc');/* override for Microsoft Internet Explorer browsers*/ | |
border-radius: 35px;/* override for Microsoft Internet Explorer browsers*/ | |
border: 4px solid #grey; | |
width:320px; | |
box-shadow:inset 0 3px 9px #d4d4d4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment