开发者

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

开发者 https://www.devze.com 2023-02-28 17:45 出处:网络
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?
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

精彩评论

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