/ Published in: CSS
URL: Border Radius
Here are five simple classes for rounding all corners, and both top, right, bottom, and left corners. Get a better understanding of these properties at http://www.css3.info/border-radius-apple-vs-mozilla/.
Expand |
Embed | Plain Text
.round-all { -webkit-border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius:5px; /* make sure its proper */ border-radius: 5px; } .round-top { -webkit-border-top-right-radius:5px; -webkit-border-top-left-radius: 5px; -moz-border-radius: 5px 5px 0 0; -khtml-border-radius:5px 5px 0 0; /* make sure its proper */ border-radius: 5px 5px 0 0; } .round-right { -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius:0 5px 5px 0; -khtml-border-radius:0 5px 5px 0; /* make sure its proper */ border-radius:0 5px 5px 0; } .round-bottom { -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius:0 0 5px 5px; -khtml-border-radius: 0 0 5px 5px; /* make sure its proper */ border-radius: 0 0 5px 5px; } .round-left { -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius: 5px 0 0 5px; -khtml-border-radius: 0 5px 5px 0; /* make sure its proper */ border-radius: 5px 0 0 5px; }
Comments
Subscribe to comments
You need to login to post a comment.

.round-all { -webkit-border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; } .round-top { -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px; -moz-border-radius: 5px 5px 0 0; -khtml-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } .round-right { -webkit-border-top-right-radius: 5px; -webkit-border-bottom-right-radius: 5px; -moz-border-radius: 0 5px 5px 0; -khtml-border-radius: 0 5px 5px 0; border-radius: 0 5px 5px 0; } .round-bottom { -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius: 0 0 5px 5px; -khtml-border-radius: 0 0 5px 5px; border-radius: 0 0 5px 5px; } .round-left { -webkit-border-top-left-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius: 5px 0 0 5px; -khtml-border-radius: 0 5px 5px 0; border-radius: 5px 0 0 5px; }