我为mozilla和chrome写了css top。
-moz-top : 20px;
-webkit-top: 75px;
但是它显示错误“未知的属性名称”。
答案 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
所有浏览器都支持