css3 - media query iPad in landscape mode and above -


my css looks this:

/* width 1024px 1600px */ /* main css */  /* width 1601px 1920px */ @media screen , (min-width: 1601px) { /* css */ }  /* wider 1920px */ @media screen , (min-width: 1921px) { /* css */ }  /* mobile */ @media screen , (max-width: 1023px) { /* css */ } 

everything works expected except ipad in landscape mode shows mobile version although mobile version targets devices 1023px. want ipad show main css.


Comments

Popular posts from this blog

html - Cut text on left side inside button while centering -

plugins - CodeIgniter support on netbeans 8.0 -

php - Selecting items from MySQL for a status update feed efficiently while accounting for possible spam -