/ Published in: CSS
Vendor prefixes and W3C standard for border-radius in CSS3.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* Mozilla */ -moz-border-radius:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; -moz-border-radius-bottomleft:4px; -moz-border-radius-bottomright:4px; /* WebKit */ -webkit-border-radius:4px; -webkit-border-top-left-radius:4px; -webkit-border-top-right-radius:4px; -webkit-border-bottom-left-radius:4px; -webkit-border-bottom-right-radius:4px; /* Standard */ border-radius:4px; border-top-left-radius:4px; border-top-right-radius:4px; border-bottom-left-radius:4px; border-bottom-right-radius:4px;
URL: http://www.w3.org/TR/2005/WD-css3-background-20050216/#the-border-radius