0

我看到这个问题有很多变体,但我的尝试都没有奏效。

我想在 IE8 中获得圆角,就像在 Firefox、Chrome 中一样……这是我的 css,下载 css3PIE 后:

border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
-webkit-border-radius: 10px; -moz-border-radius: 10px;
behavior:url(/PIE.php);
position:relative;
z-index: 0;

我用“PIE.htc”替换了“PIE.php”,但没有任何效果。我的 html 索引文件与 PIE 文件和 css 表位于同一目录中。我尝试根据我在这里看到的帖子添加 z-index 和位置规则,但在那里也没有效果。我也尝试简单地将 PIE.htc 和 PIE.php 作为路径,但没有运气......

还有什么我可以做的,或者这里有什么问题吗?谢谢,杰森

4

2 回答 2

1

CSS3 PIE 只识别border-radius,没有前缀。

border-radius: 10px在前缀版本之后添加。

于 2013-02-28T20:21:45.493 回答
0

尝试这样的事情

-webkite-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
behavior: url(/PIE.htc);
于 2013-08-30T14:13:26.160 回答