gpt4 book ai didi

css - 视网膜显示媒体查询应用于 css

转载 作者:行者123 更新时间:2023-11-28 02:45:53 25 4
gpt4 key购买 nike

我在正常的 1440px 上创建了一个 Web 应用程序。现在我必须按照规范转换为视网膜显示 2880px。因为我已经下放了它。有什么容易和最佳实践呢?我试过这样的东西

@media only screen and (min-width : 2800px){
body.checkout-cart-index input#s_method_flatrate {
width: 22px;
height: 12px;
}
}

但我现在知道视网膜是不同的东西。所以我尝试了 https://css-tricks.com/snippets/css/retina-display-media-query/ 这个查询,但到目前为止我没有帮助。也许我用错了?

最佳答案

它对您没有帮助吗?

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {

/* Retina-specific stuff here */

}

关于css - 视网膜显示媒体查询应用于 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46925894/

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