Skip to content

Instantly share code, notes, and snippets.

@marczhermo
Created November 7, 2012 22:44
Show Gist options
  • Select an option

  • Save marczhermo/4035046 to your computer and use it in GitHub Desktop.

Select an option

Save marczhermo/4035046 to your computer and use it in GitHub Desktop.
CSS Round
.round {
-webkit-border-top-left-radius: 1px;
-webkit-border-top-right-radius: 2px;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-topleft: 1px;
-moz-border-radius-topright: 2px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-bottomleft: 4px;
border-top-left-radius: 1px;
border-top-right-radius: 2px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 4px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment