/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* W3C Specification */ foo { border-radius: bar} foo { border-top-left-radius: bar} foo { border-top-right-radius: bar} foo { border-bottom-right-radius: bar} foo { border-bottom-left-radius: bar} /* Mozilla Implementation */ foo { -moz-border-radius: bar} foo { -moz-border-radius-topleft: bar} foo { -moz-border-radius-topright: bar} foo { -moz-border-radius-bottomright: bar} foo { -moz-border-radius-bottomleft: bar} /* Webkit Implementation */ foo { -webkit-border-radius: bar} foo { -webkit-border-radius-topleft: bar} foo { -webkit-border-radius-topright: bar} foo { -webkit-border-radius-bottomright: bar} foo { -webkit-border-radius-bottomleft: bar}
URL: http://www.css3.info/preview/rounded-border/