gpt4 book ai didi

css - 如何合并两个媒体查询?

转载 作者:技术小花猫 更新时间:2023-10-29 10:27:07 25 4
gpt4 key购买 nike

如何合并两个媒体查询?一种适用于较小的设备,一种适用于较大的设备,但仅限于纵向模式!

 @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) { ...

关于css - 如何合并两个媒体查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23897946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com