开发者

What is the css code to make my corners rounded? [duplicate]

This question already has answers here: Closed 11 years ago.

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜