Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created October 31, 2013 17:48
Show Gist options
  • Save ingozoell/7253961 to your computer and use it in GitHub Desktop.
Save ingozoell/7253961 to your computer and use it in GitHub Desktop.
border-radius (cross-browser)
.round {
/* Safari 3-4, iOS 1-3.2, Android 1.6- */
-webkit-border-radius: 12px;
/* Firefox 1-3.6 */
-moz-border-radius: 12px;
/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
border-radius: 12px;
}
/*
/* Source: http://css-tricks.com/almanac/properties/b/border-radius/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment