@media screen and (max-width:768px){
body{
background: lightgreen;
.content{
width: 700px;
height: 1004px;
}
}
}
@media screen and (min-width:768px) and (max-width:1200px){
body{
background: lightgreen;
.content{
width: 1060px;
height: 1900px;
}
}
}
关于这两个媒体查询我想问一下如果一个设备宽度正好有768px,那么它适用哪个媒体查询,或者说第二个媒体查询可以表示成(x>=768&&x<1200???)。还有这两个媒体查询有无先后顺序?
是的,两个都会匹配到,按正常层叠规则算,也就是下面的覆盖上面的。