3 回答
一只萌萌小番薯
TA贡献1795条经验 获得超7个赞
是! 当IE9于2011年1月发布时。
假设你想要在所有四个方面均匀15px:
.myclass { border-style: solid; border-width: 2px; -moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius: 15px;}
IE9将使用默认值border-radius
,因此请确保在所有样式中包含调用边框半径的内容。然后您的网站将为IE9做好准备。
-moz-border-radius
适用于Firefox,-webkit-border-radius
适用于Safari和Chrome。
此外:不要忘记声明你的IE编码是ie9:
<meta http-equiv="X-UA-Compatible" content="IE=9" />
一些懒惰的开发者有<meta http-equiv="X-UA-Compatible" content="IE=7" />
。如果该标记存在,则border-radius将永远不会在IE中工作。
- 3 回答
- 0 关注
- 472 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消