I am making a responsive page for all mobile browsers. One issue I am running into (particularly for iOS) is that input items zoom in when touched if the font-size
is less than 16px
- which is a big problem since the mock-up I have for the site uses a smaller font-size
.
Disable Auto Zoom in Input "Text" tag - Safari on iPhone - the answer here is to set all the input items to 16px.
and
Prevent iPhone from zooming form? - the answer here is to force "no zoom" on the user - in general this would be a bad UX decision.
Is there some fix out there I can use without forcing the user to not be able to zoom and not have to change the input to some proprietary size (just to conform to iOS)?
Appreciate any help. Thanks.