如何在Internet Explorer上使用Border Radius CSS

时间:2012-06-21 08:04:30

标签: jquery css internet-explorer

如何在所有版本的IE上使用border-radius?

.myclass {
    border-style: solid;
    border-width: 2px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

是否可以使用jquery?

4 个答案:

答案 0 :(得分:5)

由于旧浏览器不支持边界半径(和其他CSS3属性),因此您可以使用CSS3 Pie。请记住,您指的是样式而不是脚本。所以询问是否可以用jQuery完成它有点奇怪。

答案 1 :(得分:1)

使用CSS3 PIE http://css3pie.com/

答案 2 :(得分:0)

您已尝试使用插件dd_roundies(download link)获取IE上的边框半径。 希望它可以帮助你

答案 3 :(得分:0)

考虑到您的代码,您已经在正确的位置。

You could find the answer to your problem a bit further down.