Ipad Mini Specfic CSS Media Queries?

匿名 (未验证) 提交于 2019-12-03 07:50:05

问题:

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

回答1:

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) {  } 


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!