开发者

CSS Rounded corners in IE [duplicate]

开发者 https://www.devze.com 2023-03-07 16:05 出处:网络
This question already has answers here: Closed 11 years ago. Possible Duplicate: Can you do CSS rounded corners in IE without using images?
This question already has answers here: Closed 11 years ago.

Possible Duplicate:

Can you do CSS rounded corners in IE without using images?

How can I get rounded corners in CSS with IE? I have this right now...

        -moz-border-radius-topleft: 5px;
        -moz-bord开发者_高级运维er-radius-bottomleft: 5px;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;


Not with only with CSS, well unless you include IE javascript behaviors. You can use css3pie but I would consider it a hack to get it to work in IE and sometimes glitchy. http://css3pie.com/

You could use jQuery not that jQuery is required. http://jquery.malsup.com/corner/

You could do it with background imagse rounded corners IE and background images

You can do it in ie9 How to write CSS3 rounded corners for IE9?

0

精彩评论

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