0

我正在尝试在 IE8 中在我的滑块的导航选项卡上进行圆角处理:csr.steelcase.com ...(“我们的愿景”、“我们的 CEO 致辞”等)

该网站是用 WordPress 编写的,我已经按照我读过的几篇文章正确安装了 CSS3PIE,但无论出于何种原因,我仍然无法在 IE8 中转角。我也尝试过链接到 PIE.htc 文件...无济于事。

 body.company .flex-control-paging li a.flex-active{background: white; color:#333;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
zoom: 1;
position: relative;
behavior: url(http://csr.steelcase.com/wp-content/themes/steelcase360_theme_csr/pie_ver1/PIE.php);
}

有没有人有任何想法?谢谢你的帮助。

4

1 回答 1

2

PIE.htc 只支持边框半径的简写版本,所以使用这个:

body.company .flex-control-paging li a.flex-active{
    background: white;
    color:#333;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    zoom: 1;
    position: relative;
    behavior: url(http://csr.steelcase.com/wp-content/themes/steelcase360_theme_csr/pie_ver1/PIE.php);
}

http://css3pie.com/documentation/supported-css3-features/#border-radius

于 2013-02-07T00:35:41.720 回答