Hello. I just can not figure out how to set up a zone of visibility of the site for mobile phones. At the moment, when you load the site on your mobile, the top corner of the page is displayed, and then you can scale it manually. The code contains the following command:
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" /> It is necessary to show a zone width of 750 px. I tried a media query of this kind:
@media screen and (max-width: 640px){ @-ms-viewport { width: 750px; } @-o-viewport { width: 750px; } @viewport { width: 750px; } } But it did not give any effect. What is being done wrong?