Is there a way to disable the zoom feature on input fields in webview?

后端 未结 10 1407
南笙
南笙 2021-02-05 21:18

When a user clicks in an input field or textarea, the application zooms in. Is there a simple way to disable it?

Currently have the meta tag:

meta name=\         


        
10条回答
  •  滥情空心
    2021-02-05 21:32

    Isn't this simply a text-size adjust issue?

    body{ 
        -webkit-text-size-adjust:none; 
    }
    

提交回复
热议问题