0

我想在 Firefox 中为我的 div 添加圆角。我试过了:

    -moz-border-radius: 20px;

它不工作。

请问,有没有人有任何替代解决方案?

谢谢

4

3 回答 3

3

较新版本的 Firefox 支持简单

border-radius: 20px;

你试过吗?否则我需要看更多你的css。

于 2012-12-06T14:01:30.903 回答
1

将以下所有三个放入您的CSS

-moz-border-radius: 20px; 
-webkit-border-radius: 20px; 
border-radius: 20px; 

一些旧版本使用 -moz 和 -webkit ,但最近的浏览器版本采用 CSS3 样式。

来源:http ://www.the-art-of-web.com/css/border-radius/

于 2012-12-06T14:09:30.570 回答
0

正如@vidiya 提到的

始终确保涵盖所有基础:

-moz-border-radius: 20px; 
-webkit-border-radius: 20px; 
border-radius: 20px; 

我建议您查看一下LESSSASS以便您可以使用 mixins(CSS 中的函数)

 //From LESS
.rounded (@round:"4px") {
    -moz-border-radius: @round; 
    -webkit-border-radius: @round; 
    border-radius: @round; 
}
于 2012-12-06T14:25:15.683 回答