首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在Wordpress中使用CSS3Pie ...每件事都做对了,还是不能工作

在Wordpress中使用CSS3Pie ...每件事都做对了,还是不能工作
EN

Stack Overflow用户
提问于 2013-02-07 06:40:27
回答 1查看 220关注 0票数 0

我正在尝试在我的滑块的导航标签上的IE8中圆角: csr.steelcase.com ...(“我们的愿景”,“我们首席执行官的笔记”,等等)

该站点是用WordPress编写的,根据我读过的几篇文章,我已经正确地安装了CSS3PIE,但无论出于什么原因,我仍然无法在IE8中绕过弯路。我也尝试过链接到PIE.htc文件...没有用。

代码语言:javascript
复制
 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);
}

有谁有什么想法吗?谢谢你的帮助。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-02-07 08:35:42

PIE.htc仅支持边界半径的速记版本,因此请使用以下命令:

代码语言:javascript
复制
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

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/14740262

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档