Ipad Mini Specfic CSS媒体查询? [英] Ipad Mini Specfic CSS Media Queries?

查看:180
本文介绍了Ipad Mini Specfic CSS媒体查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我搜索了很多关于Ipad mini adn找到的CSS Specfic媒体查询这个页面。这说明这Ipad Mini有7.9在162 ppi。如何在CSS媒体查询中应用此属性。请帮助

I have search a lot about CSS Specfic Media Queries for Ipad mini adn found this page. Which says this the Ipad Mini have 7.9 in 162 ppi. How to apply this properties in CSS Media Queries. Please help

推荐答案

iPad mini将继承与原始iPad相同的视口大小。但是为了更精确,您可以指定iPad mini的像素密度,因此:

The iPad mini will just inherit the same viewport size as the original iPad. But for more precise, you can target pixel density of the iPad mini, so:

/* ipad Mini Portrait */
@media only screen and (width:768px) and (resolution: 163dpi) {

}

/* ipad Mini Landscape */
@media only screen and (width:1024px) and (resolution: 163dpi) {

}

这篇关于Ipad Mini Specfic CSS媒体查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆