Skip to content

Instantly share code, notes, and snippets.

@politicus
Forked from magemore/gist:2486466
Created June 27, 2012 08:46
Show Gist options
  • Save politicus/3002509 to your computer and use it in GitHub Desktop.
Save politicus/3002509 to your computer and use it in GitHub Desktop.
CSS - Adding rounded corners – border-radius
.round{
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px; /* future proofing */
-khtml-border-radius: 10px; /* for old Konqueror browsers */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment