【发布时间】:2018-01-30 13:29:04
【问题描述】:
我想要得到的是一个媒体查询,它只在 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
}
但不幸的是,两者都不起作用。
【问题讨论】:
标签: c# css firefox media-queries