gpt4 book ai didi

html - 适用于宽度和高度的媒体查询

转载 作者:行者123 更新时间:2023-11-27 22:51:47 24 4
gpt4 key购买 nike

我有一个媒体查询来检查屏幕高度,如下所示,但不管屏幕高度(1200 或 1050)如何,只有第一个查询适用并设置高度 = 94%。谁能帮我解决这个问题。

谢谢

@media screen and (min-device-width: 1920px) and (max-device-height: 1200px) {
.tab-content-parent-ht {
height:94%;
}
}

@media screen and (min-device-width:1920px) and (max-device-height: 1050px) {
.tab-content-parent-ht {
height:91.5%;
}
}

最佳答案

您可以像下面这样修改您的代码:

@media screen and (min-device-width: 1920px) and (min-device-height: 1051px) {
.tab-content-parent-ht {
height:94%;
}
}

@media screen and (min-device-width:1920px) and (max-device-height: 1050px) {
.tab-content-parent-ht {
height:91.5%;
}
}

关于html - 适用于宽度和高度的媒体查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59403146/

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