Here\'s the dilema, I have a webpage (only for android devices) and in that page I have an input box (a text box specifically) and when it gets focus the browser zooms in. I
For Nexus 7 I was getting this issue when my media query was -
@media screen and (max-device-width: 600px) and (orientation : portrait)
So I used below media query to resolve the issue -
@media screen and (max-device-width: 600px) and (max-aspect-ratio: 13/9)