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

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -