gpt4 book ai didi

css - 媒体查询不适用于较小的屏幕尺寸

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:08 26 4
gpt4 key购买 nike

/***** BIGGER SCREEN *****/

@media screen and (min-width: 1367px) {

#body-wrapper {
max-width: 1367px;
margin: auto;

}

}

/** IPHONE **/

@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px) {

#logo {
display: none;
}

.wrapper {
height: 200px;
}
}

试图让一个简单的媒体 iphone 查询工作,我已经尝试了一切,但它在我的浏览器/手机上没有任何变化,我有元视口(viewport)和文件工作正常。我已经对其他大小的查询进行了更改,但由于某种原因,一旦我低于 700px,无论我做什么都没有任何变化..

最佳答案

仅使用最大宽度

.regular-classes {
...
}

/* narrower than 1367px - overrides all attributes from the regular selectors */
@media screen and (max-width: 1367px) {
...
}

/* narrower than 667px - overridse all attributes from the queries above */
@media only screen
and (max-device-width : 667px) {
...
}

/* narrower than 375px - overrides all attributes from the queries above*/
@media (max-device-width : 375px) {
...
}

关于css - 媒体查询不适用于较小的屏幕尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39177690/

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