I want to disable auto zoom when focusing an HTML input field on Android Firefox (possibly iOS Safari).
I've read many related, ancient threads on SO [1, 2, 3] and on the web, but found neither a working solution nor a definitive answer that this is not possible in 2021. The only test device I have is an Android phone (this may also happen with iOS), on which the issue only comes up with Firefox; Chrome works as intended (by me).
I have tried:
- setting
font-size: 16px
on the input field - setting
<meta name="viewport" content="width=device-width, initial-scale=1, max-scale=1" />
- and out of desperation even
<meta name="viewport" content="width=device-width, initial-scale=1, max-scale=1, user-scalable=no">
Android 11, Firefox 93.1.0
Is what I want to achieve really not possible?