Skip to content

Instantly share code, notes, and snippets.

@IbnSaeed
Created May 31, 2011 09:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IbnSaeed/1000250 to your computer and use it in GitHub Desktop.
Save IbnSaeed/1000250 to your computer and use it in GitHub Desktop.
CSS Rounded Corners
.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