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
Post a Comment