我想要的是一个只在Firefox中触发的媒体查询,直到窗口达到最大宽度1352px。 我尝试过不同的版本,比如
@@-moz-document url-prefix() and media only screen and (max-width: 1352px) {
#timetable {
transform: scale(0.85) !important
}
或
@@media only screen and (max-width: 1352px) and (moz-document: url-prefix()) {
#timetable {
transform: scale(0.85) !important
}
但遗憾的是两者都不起作用。
答案 0 :(得分:0)
此代码可以使用
@-moz-document url-prefix() {
@media screen and (max-width: 1352px) {
#timetable {
transform: scale(0.85) !important
}
}
}