gpt4 book ai didi

html - HDPI 和 MDPI 笔记本电脑屏幕的媒体查询不起作用

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

我必须为 HDPI 和 MDPI 屏幕的元素应用不同的属性。我尝试了以下代码,但它仅适用于 HDPI,不适用于 MDPI。

@media screen and (min-width: 900px) {
.myClass {
margin-left: 34%;
}
}
@media screen and (max-width: 899px) and (min-width: 500px) {
.myClass {
margin-left: 43%;
}
}

此处媒体屏幕最小宽度 990px​​(HDPI) 有效,但对于其他媒体屏幕无效。我应该怎么做?

最佳答案

/* (ldpi) Android*/
@media only screen and (-webkit-device-pixel-ratio:.75){
/* CSS */
}

/* (mdpi) Android*/
@media only screen and (min-device-width : 480px) and (max-device-width : 800px) {
/* CSS */
}

/* (hdpi) Android*/
@media only screen and (-webkit-device-pixel-ratio:1.5){
/* CSS */
}

Reference 1

Reference 2

关于html - HDPI 和 MDPI 笔记本电脑屏幕的媒体查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40458044/

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