-2

我为 mozila 和 chrome 编写 css 顶部。

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

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

4

2 回答 2

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;
    } 
}
于 2014-07-26T02:50:57.897 回答
1

只需使用top

所有浏览器都支持

于 2012-12-09T15:55:12.200 回答