gpt4 book ai didi

css - 如何将媒体查询仅应用于特定宽度范围

转载 作者:行者123 更新时间:2023-11-28 08:35:54 25 4
gpt4 key购买 nike

如何在 360 像素 - 640 像素之间应用媒体查询。这与我的 (max-width: 320px) 媒体查询重叠。

@media screen and (min-width:360px) and (max-width:640px) and (orientation : landscape)

My webpage where the problem occurs

最佳答案

除了页面中的这个媒体查询之外,您什么都没有。如果要更改 320px 以下的内容,则需要单独声明。您应该声明影响页面宽度以下所有内容的媒体查询。

这是媒体查询如何工作的一个简单示例:http://jsfiddle.net/ra9ry8t4/1/

在 JSFiddle 中测试可能更容易,但这里它也是一个片段:

@media screen and (min-width: 480px) {
body {
background-color: yellow;
}
}

@media screen and (min-width: 320px) and (max-width:480px) {
body {
background-color: blue;
}
}

@media screen and (min-width: 320px) and (max-width:480px) and (orientation: landscape) {
body {
background-color: green;
}
}

@media screen and (max-width: 320px) {
body {
background-color: red;
}
}
<h1>Media Queries Example</h1>
<p>Increase or decrease the size of of this window to see the background color change</p>

关于css - 如何将媒体查询仅应用于特定宽度范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37478263/

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