为什么设置媒体查询总是没有任何效果?

来源:5-3 如何实现移动端的样式-如何选择媒体查询单位2

GYA

2017-01-29

请问这是什么问题呢?我检查了很多遍,花了很多时间就是看不出哪里有问题?http://szimg.mukewang.com/588dbe3400015c0506840410.jpg

写回答

2回答

姜维

2017-02-15

把完整的页面代码贴出来看下?


0
0

GYA

提问者

2017-02-15

.footer-content .brand {
    display: block;
    float: left;
    width: 20%;
    height: 35px;
    background: url('../img/logo@1x.png') no-repeat;
    background-size: 150px 35px;
    filter: grayscale(100%);
    /* 灰色滤镜 */
    -webkit-filter: grayscale(100%);
}

.footer-content ul {
    float: left;
    width: 15%;
}

.footer-content ul li {
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.footer-content ul .title {
    font-size: 1.6rem;
    line-height: 3rem;
}

@media screen and (max-width:50em) {
    .footer-content .brand {
        display: none;
    }
    .footer-content ul {
        width: 20%;
    }
    .footer-content ul li {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .footer-content ul .title {
        font-size: 1.4rem;
        line-height: 2.5rem;
    }
}

我现在明白原因了,就像这段代码,@media媒体查询要写在原来样式下面才会有效,写在上面则无效。

0
0

响应式开发一招致胜

用一套代码开发出不受设备型号、尺寸限制的互联网金融网站

4021 学习 · 752 问题

查看课程