Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ipad Mini Specfic CSS Media Queries?

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

like image 241
Imran Qadir Baksh - Baloch Avatar asked Apr 28 '13 11:04

Imran Qadir Baksh - Baloch


1 Answers

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

}
like image 147
Eli Avatar answered Oct 15 '22 23:10

Eli