Disable zoom on input focus in Android webpage

后端 未结 30 1283
日久生厌
日久生厌 2020-12-02 05:17

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

30条回答
  •  悲&欢浪女
    2020-12-02 06:15

    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)

提交回复
热议问题