C#媒体查询firefox中的特定最大宽度

时间:2017-08-22 10:02:35

标签: c# css firefox media-queries

我想要的是一个只在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
    }

但遗憾的是两者都不起作用。

1 个答案:

答案 0 :(得分:0)

此代码可以使用

@-moz-document url-prefix()  {
@media screen and (max-width: 1352px) {
   #timetable {
    transform: scale(0.85) !important
    }
}
}