Reputation: 3
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
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