gpt4 book ai didi

css - iPhone XR/XS/XS Max CSS 媒体查询

转载 作者:技术小花猫 更新时间:2023-10-29 10:11:00 34 4
gpt4 key购买 nike

用于定位 Apple 2018 设备的正确 CSS 媒体查询是什么:iPhone XR/XS/XS Max?

最佳答案

iPhone XR

/* 1792x828px at 326ppi */
@media only screen
and (device-width : 414px)
and (device-height : 896px)
and (-webkit-device-pixel-ratio : 2) { }

iPhone XS

/* 2436x1125px at 458ppi */
@media only screen
and (device-width : 375px)
and (device-height : 812px)
and (-webkit-device-pixel-ratio : 3) { }

iPhone XS Max

/* 2688x1242px at 458ppi */
@media only screen
and (device-width : 414px)
and (device-height : 896px)
and (-webkit-device-pixel-ratio : 3) { }



寻找特定方向?

肖像

添加以下规则:

    and (orientation : portrait) 

风景

添加以下规则:

    and (orientation : landscape) 



引用资料:

关于css - iPhone XR/XS/XS Max CSS 媒体查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52321212/

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