Skip to content

Instantly share code, notes, and snippets.

@juanghurtado
Created January 25, 2010 21:58
Show Gist options
  • Save juanghurtado/286302 to your computer and use it in GitHub Desktop.
Save juanghurtado/286302 to your computer and use it in GitHub Desktop.
#selector .example {
/* CSS3 Standard */
border-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
/* Mozilla*/
-moz-border-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-bottomleft: 4px;
/* Safari */
-webkit-border-radius: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment