gpt4 book ai didi

html - 媒体查询不从宽度 479px 读取到 767px?

转载 作者:太空宇宙 更新时间:2023-11-04 01:12:43 25 4
gpt4 key购买 nike

我有三个媒体查询,范围如下:

@media screen and (min-width: 360px) and (max-width: 479px)
@media screen and (min-width: 480px) and (max-width 767px)
@media screen and (min-width: 768px) and (max-width: 1023px)

问题是我的网站不读取 479px 到 767px 宽度范围内的样式,这是我不明白的,非常感谢任何对此建议的帮助,谢谢!

最佳答案

您有错字,您忘记了 (max-width 767px) 处的冒号,它应该如下所示:

@media screen and (min-width: 360px) and (max-width: 479px)
@media screen and (min-width: 480px) and (max-width: 767px)
@media screen and (min-width: 768px) and (max-width: 1023px)

这是一个片段

@media screen and (min-width: 360px) and (max-width: 479px){
body{background:green;}
}
@media screen and (min-width: 480px) and (max-width: 767px){
body{background:yellow;}
}
@media screen and (min-width: 768px) and (max-width: 1023px){
body{background:red;}
}

关于html - 媒体查询不从宽度 479px 读取到 767px?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50885198/

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