gpt4 book ai didi

html - CSS媒体查询不同的结果

转载 作者:太空宇宙 更新时间:2023-11-03 21:23:44 27 4
gpt4 key购买 nike

为什么 DIV 在手机和调整大小的桌面窗口上显示不同?

@media (max-width: 327px) { 
.header {height: 0px !important;}
}
@media all and (min-width: 328px) and (max-width: 440px) {
.header {height: 0px !important;}
}

这就是我需要的...在调整大小的桌面窗口上查看时没问题,但在手机上却不行

最佳答案

试试这个

.header{height:200px; width:200px; background:red;}
@media (max-width: 327px) {
.header {height: 0px;}
}

@media (max-width: 440px) {
.header {height: 0px;}
}
<div class="header"></div>

关于html - CSS媒体查询不同的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35083848/

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