我想在firefox中为我的div添加圆角。 我试过了:
-moz-border-radius: 20px;
它无效。
Pls,有没有人有任何其他解决方案?
由于
答案 0 :(得分:3)
较新版本的firefox支持只是
border-radius: 20px;
你试过那个吗?
否则我需要再看一些你的CSS。
答案 1 :(得分:1)
将以下三项全部放入你的css
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
某些旧版本使用-moz和-webkit,但最近的浏览器版本采用CSS3样式方式。
答案 2 :(得分:0)
@vidiya提到
始终确保涵盖所有基础:
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
我建议查看LESS
或SASS
,以便您可以使用mixins(CSS中的函数)
//From LESS
.rounded (@round:"4px") {
-moz-border-radius: @round;
-webkit-border-radius: @round;
border-radius: @round;
}