What is the css code to make my corners rounded? [duplicate]
Possible Duplicates:
CSS Rounded corners. What is the best way to create rounded corners using CSS?
C开发者_StackOverflowan somebody pls give me the css code to make my corners rounded. Pls...
.round {-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #EEFF99;
behavior: url(/PIE.htc);
http://css3pie.com/
This will work on most modern browsers
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
http://border-radius.com/
use images for the rounded corners for backward compatibility, for browsers that dont support highers css
精彩评论