gpt4 book ai didi

css - 媒体查询方向 : landscape not working

转载 作者:行者123 更新时间:2023-12-05 07:46:12 24 4
gpt4 key购买 nike

我有这样写的媒体查询:

@media only screen and (max-device-width: 600px) and (orientation: portrait) {
.img-responsive{
height : 200px;
width : 100px;
}
}

@media only screen and (max-device-width: 600px) and (orientation: landscape) {
.img-responsive{
width : 95px;
height : 100px;
}
}

纵向方向工作正常,但横向 css 似乎不适用。

最佳答案

虽然我只在 chrome 中测试过,但我对调换分辨率很有效

@media all and (max-width: 768px) and (max-height: 1024px) and (orientation:portrait) {}
@media all and (max-width: 1024px) and (max-height: 768px) and (orientation:landscape) {}

关于css - 媒体查询方向 : landscape not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41086610/

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