Skip to content

Instantly share code, notes, and snippets.

@nickpettit
Created February 9, 2011 22:19
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 nickpettit/819437 to your computer and use it in GitHub Desktop.
Save nickpettit/819437 to your computer and use it in GitHub Desktop.
Condensed Border Radii
.black, .blue, .pink, .yellow {
-webkit-transition: all 0.5s ease;
width: 10px;
height: 10px;
-moz-border-radius: 0;
border-radius: 0;
display: block;
background: #FFF;
padding: 0;
}
.rounded {
-moz-border-radius: 200px 200px 200px 0;
border-radius: 200px 200px 200px 0;
color: #C00;
}
@pipozoft
Copy link

pipozoft commented Feb 9, 2011

Thanks Nick! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment