仅在FF 35中未检测到媒体查询

时间:2015-02-21 08:18:35

标签: html css

由于某种原因,仅在FireFox 35.0.1上未检测到媒体查询。这是媒体查询的摘录:

@media only screen and (max-width:1264px){
    #home{
        height:900px ; 
        background-size:cover;
         }
    #contactus{
        height:900px ;
        background: url(../img/bg3_chk.png) no-repeat 86% 18.65px;
        }
    p.homeCopy{
        bottom:430px;
        }
    h1.contacthline{
        top:170.1px ;
        }         
 }

我已经用其他一些问题检查了这个问题,但问题仍然存在,其中一个问题是这个人做了语法错误,而其他一些答案说FF渲染视口大小有点不同Chrome和Internet Explorer。所以我实际上不明白为什么在FF 35中忽略媒体查询。如果你能给我可能的解决方案或见解如何解决它或为什么会发生,我会非常感激。感谢您的答复。

1 个答案:

答案 0 :(得分:-1)

@media (max-width:1264px){
    #home{
        height:900px ; 
        background-size:cover;
         }
    #contactus{
        height:900px ;
        background: url(../img/bg3_chk.png) no-repeat 86% 18.65px;
        }
    p.homeCopy{
        bottom:430px;
        }
    h1.contacthline{
        top:170.1px ;
        }         
 }

试试吧。