I make a mobile version. There is a zoom problem. On the mobile version there is a tag:
<meta name="viewport" content="width=320" id="mobile"> The transition button is used to write a session and another one is written instead of this tag:
<meta name="viewport" content="width=1024"> The problem is that the browser "remembers" the width of 320px and applies it; initial-scale=1 is ignored.
If you specify user-scalable=no , then everything scales correctly, but the user cannot increase it. The same effect if set minimum-scale=1,maximum-scale=1 . And it is necessary that the user could increase the part of the page
How to achieve this?