Skip to content Skip to sidebar Skip to footer

Unwanted Scaling On Mobile Devices

Cant understand how to avoid scaling on mobile devices. It should work without any responsive rules like meta-viewport. Tried a lot of variants but the page initially loads magnifi

Solution 1:

The following tag you use

<meta name="viewport" content="width=device-width, initial-scale=1">

tells a browser about initial scale only. If you add maximum scale info, it should work properly:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, minimal-ui">

Let me know if it works for you

Post a Comment for "Unwanted Scaling On Mobile Devices"