mr coder
mr coder

Reputation: 3

Ignore or disable mobile viewport resize when focus on input in iPhone

If you open site migreview.com on iPhone and choise some input element then window size will be changed. What I can do for disable changing of mobile viewport?

Upvotes: 0

Views: 2121

Answers (1)

YT_Xaos
YT_Xaos

Reputation: 382

You can use meta name="viewport" like this:

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/> inside the head tag, this will prevent it from being scaled by the user.

Upvotes: 2

Related Questions