I’m working on an iOS web app and I have the viewport set to not scalable via…
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
The problem is that when I focus on an input text field, it zooms in and doesn’t zoom out:

How can I prevent this?
Full size image: https://i.stack.imgur.com/N50Vg.png
The problem was this tag,
-webkit-overflow-scrolling: touch;It’s been really buggy in iOS5, and after removing it from the
div, the zoom problem did not happen again.