CSS中的CSS圆角

时间:2011-05-19 22:11:52

标签: css

  

可能重复:
  Can you do CSS rounded corners in IE without using images?

如何在IE中使用CSS获得圆角?我现在有这个......

        -moz-border-radius-topleft: 5px;
        -moz-border-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;

1 个答案:

答案 0 :(得分:2)

除非您包含IE javascript行为,否则不仅仅使用CSS。你可以使用css3pie,但我会认为它是一个黑客,让它在IE中工作,有时是毛病。 http://css3pie.com/

你可以使用jQuery而不是jQuery是必需的。 http://jquery.malsup.com/corner/

你可以用背景想象rounded corners IE and background images

来做

你可以在ie9中完成 How to write CSS3 rounded corners for IE9?