我为 mozila 和 chrome 编写 css 顶部。
-moz-top : 20px;
-webkit-top: 75px;
但它显示错误“未知的属性名称”。
我参加聚会有点晚了,但这对我有用:
/* 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;
}
}
只需使用top
所有浏览器都支持