媒体查询使用chrome而不是safari,即firefox?

时间:2013-06-24 12:26:38

标签: html css css3 media-queries

这让我发疯了,我似乎无法找到媒体查询的问题,但除了ios 7和chrome上的移动游猎之外,它在任何浏览器中都无效。我认为这是一些疯狂的语法错误,但再次,我找不到任何东西。顺便说一句,媒体查询都在他们自己的文件(mediaqueries.css)中,并链接在所有样式表的底部。

@media screen and(max-width: 1100px) {

    #bottombar ul li{
        margin-right: 24px;
    }
}
@media screen and(max-width: 1030px) {
    #bottombar ul li{
        margin-right: 20px;
    }
}
@media screen and(max-width: 955px) {
    #bottombar ul li a{
        font-size: 15px;
    }
    #bottombar ul{
        margin-left: -25px;
    }
}
@media screen and(max-width: 925px) {
    #bottombar ul li a{
        font-size: 15px;
    }
}
@media screen and(max-width: 880px) {
    #bottombar input{
        display: none;
    }
    #alternativesearch input{
        display: block;
    }
}
@media screen and(max-width: 800px) {
    section#skills ul{
        float: none;
        /*margin: 0 auto;*/
        margin-left: -70px;
        width: 100%;
    }   
    section#skills ul h3{
        font-size: 30px;
    }
    section#skills ul li{
        font-size: 20px;
    }
    h1.catcher_title{
        margin-top: 50px;
    }
}
@media screen and(max-width: 770px) {
        #image_placeholder,#about article{
            float: none; width: 100%;
        }
        #about article{
            margin: 0;
        }
        #skills{
            margin-top: -300px;
        }
}
@media screen and(max-width: 735px) {
    h1.catcher_title{
        margin-top: 30px;
    }
    h3.catcher_title{
        margin-top: -30px;
    }
}   
@media screen and(max-width: 700px) {
    #bottombar ul li a{
        font-size: 13px;
    }
}   
@media screen and(max-width: 648px) {
    #bottombar ul li a{
        font-size: 13px;
    }
    .popup{
        width: 300px;
        margin-left: -150px;
    }
    h1.catcher_title{
        margin-top: 60px;
    }
}
/*@media screen and(min-width: 500px){
    #bottombar{
        border-top: 8px solid #16A07A;
        height: 52px;
    }
}*/ 
@media screen and(max-width: 540px){
    #bottombar ul li:last-child{
    display: block;
}
    #cart{top:20px;}
    #view_cart{top:40px;}
    #alternativesearch input:focus{
        width: 150px;
        top:25px;
    }
    #alternativesearch input{
        top:25px;
    }
    h3.catcher_title{
        margin-top: -20px;
    }
    body{margin-top: 0px;}
    #bottombar{
        height: 16px;
        top:0px;
        border: none;
        overflow: hidden;
        background: transparent;
    }
    #logo{display: none;}
    #menutoggle{
        display: block;
    }
    #bottombar ul{
        margin-left: -50px;
    }
    #bottombar ul li:nth-child(1){
        border-top: 1px solid green;
    }
    #bottombar ul li{
        width: 100%;
        /*height: 20px;*/
        margin-left: 0;
        /*background: #1C8C0F;*/
        border-bottom: 1px solid green; 
        margin-right: 0;
        text-align: center;
    }
    #bottombar ul li:hover{
        background: green;
    }
    #bottombar ul li a{
        display: block;
        font-size: 20px;
        line-height: 120%;
    }
}

2 个答案:

答案 0 :(得分:4)

我刚刚使用W3C CSS Validator验证了您的代码,并注意到“和”导致问题,基本上您需要在“和”之后给出一个空格。

@media screen and (max-width: 1100px) {

        #bottombar ul li{
            margin-right: 24px;
        }
    }
    @media screen and (max-width: 1030px) {
        #bottombar ul li{
            margin-right: 20px;
        }
    }
    @media screen and (max-width: 955px) {
        #bottombar ul li a{
            font-size: 15px;
        }
        #bottombar ul{
            margin-left: -25px;
        }
    }
    @media screen and (max-width: 925px) {
        #bottombar ul li a{
            font-size: 15px;
        }
    }
    @media screen and (max-width: 880px) {
        #bottombar input{
            display: none;
        }
        #alternativesearch input{
            display: block;
        }
    }
    @media screen and (max-width: 800px) {
        section#skills ul{
            float: none;
            /*margin: 0 auto;*/
            margin-left: -70px;
            width: 100%;
        }   
        section#skills ul h3{
            font-size: 30px;
        }
        section#skills ul li{
            font-size: 20px;
        }
        h1.catcher_title{
            margin-top: 50px;
        }
    }
    @media screen and (max-width: 770px) {
            #image_placeholder,#about article{
                float: none; width: 100%;
            }
            #about article{
                margin: 0;
            }
            #skills{
                margin-top: -300px;
            }
    }
    @media screen and (max-width: 735px) {
        h1.catcher_title{
            margin-top: 30px;
        }
        h3.catcher_title{
            margin-top: -30px;
        }
    }   
    @media screen and (max-width: 700px) {
        #bottombar ul li a{
            font-size: 13px;
        }
    }   
    @media screen and (max-width: 648px) {
        #bottombar ul li a{
            font-size: 13px;
        }
        .popup{
            width: 300px;
            margin-left: -150px;
        }
        h1.catcher_title{
            margin-top: 60px;
        }
    }
    /*@media screen and (min-width: 500px){
        #bottombar{
            border-top: 8px solid #16A07A;
            height: 52px;
        }
    }*/ 
    @media screen and (max-width: 540px){
        #bottombar ul li:last-child{
        display: block;
    }
        #cart{top:20px;}
        #view_cart{top:40px;}
        #alternativesearch input:focus{
            width: 150px;
            top:25px;
        }
        #alternativesearch input{
            top:25px;
        }
        h3.catcher_title{
            margin-top: -20px;
        }
        body{margin-top: 0px;}
        #bottombar{
            height: 16px;
            top:0px;
            border: none;
            overflow: hidden;
            background: transparent;
        }
        #logo{display: none;}
        #menutoggle{
            display: block;
        }
        #bottombar ul{
            margin-left: -50px;
        }
        #bottombar ul li:nth-child(1){
            border-top: 1px solid green;
        }
        #bottombar ul li{
            width: 100%;
            /*height: 20px;*/
            margin-left: 0;
            /*background: #1C8C0F;*/
            border-bottom: 1px solid green; 
            margin-right: 0;
            text-align: center;
        }
        #bottombar ul li:hover{
            background: green;
        }
        #bottombar ul li a{
            display: block;
            font-size: 20px;
            line-height: 120%;
        }
    }

答案 1 :(得分:1)

也许你应该使用 min-width 而不是 max-width 。您的样式可能总是被看到/看不见,因为某处总有最大宽度。

语法很好,同时根据html结构检查层次结构是否合适。