gpt4 book ai didi

CSS 媒体查询超出范围

转载 作者:太空宇宙 更新时间:2023-11-04 02:05:54 24 4
gpt4 key购买 nike

我正在使用以下媒体查询:

@media (max-width: 1439px) and (min-width: 940px) {
...
}

奇怪的是,当我在手机上或使用 chrome 设备模拟尝试时,它总是适用。无论浏览器/仿真窗口有多小。

最佳答案

当您使用媒体查询时,您必须指定媒体类型 ( screen )

@media screen and (max-width: 1439px) and (min-width: 940px) {...}

第二,你必须在你的 html 中包含这个 <meta>

<meta name="viewport" content="width=device-width, initial-scale=1" />

关于CSS 媒体查询超出范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40762357/

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