1

这让我发疯,我似乎找不到媒体查询的问题,但它在 ios 7 和 chrome 上的移动 safari 之外的任何浏览器中都不起作用。我认为这是一些疯狂的语法错误,但我还是找不到任何东西。顺便说一句,媒体查询都在它们自己的文件(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%;
    }
}
4

2 回答 2

4

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

@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%;
        }
    }
于 2013-06-25T00:35:11.613 回答
1

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

虽然语法很好,但还要根据 html 结构检查层次结构是否良好。

于 2013-06-24T12:34:01.513 回答