css – 如何组合两个媒体查询?

前端之家收集整理的这篇文章主要介绍了css – 如何组合两个媒体查询?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何组合两个媒体查询?一个用于较小的设备,一个用于较大的设备,但仅限于纵向模式!
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) 
and (orientation : landscape){
#div {margin-top: 20px;}
}

}
@media only screen 
and (min-device-width : 481px) 
and (max-device-width : 1024px) 
and (orientation : portrait){
{margin-top: 20px;}
}

解决方法

不完全清楚你想要结合什么,但基本上你用逗号分隔它们

例如

@media only screen and (orientation : landscape),only screen and (min-device-width : 481px) and (orientation : portrait) { ...
原文链接:https://www.f2er.com/css/216171.html

猜你在找的CSS相关文章