如何为chrome,mozilla编写特定的css top属性

时间:2012-12-09 15:46:46

标签: css

我为mozilla和chrome写了css top。

    -moz-top : 20px;
    -webkit-top: 75px;

但是它显示错误“未知的属性名称”。

2 个答案:

答案 0 :(得分:2)

我参加聚会有点晚了,但这对我有用了:

/* this sets standard, which gets IE and others (all except chrome and mozilla) */ 

#EXAMPLE{
    top: -10px;
}

/* this gets mozilla */
@-moz-document url-prefix() {
    #EXAMPLE{
        top: -10px;
    }
}

/* this gets chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
     #EXAMPLE{
     top: -5px !important;
    } 
}

答案 1 :(得分:1)

只需使用top

即可

所有浏览器都支持