为什么设置媒体查询总是没有任何效果?
来源:5-3 如何实现移动端的样式-如何选择媒体查询单位2
GYA
2017-01-29
请问这是什么问题呢?我检查了很多遍,花了很多时间就是看不出哪里有问题?
写回答
2回答
-
姜维
2017-02-15
把完整的页面代码贴出来看下?
00 -
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媒体查询要写在原来样式下面才会有效,写在上面则无效。
00
相似问题