It is required to make the site appear as a whole ( 1170 wide ) on all mobile devices. For many platforms, the use of the meta tag has helped.
<meta name="viewport" content="width=1170px"/> But on the Windows Phone (8.1) platform , the site is still only partially displayed ( on a scale of 100% ). How to force the browser to “squeeze” the page so that it is initially visible as a whole?
<meta name="viewport" content="width=1170px, initial-scale=0.27, maximum-scale=0.27"/>, but this is a very bad solution, since limits the user's ability to scale. - Svetlana@-ms-viewport { width: 1170px; } @-webkit-viewport { width: 1170px; } @-moz-viewport { width: 1170px; } @-o-viewport { width: 1170px; } @viewport { width: 1170px; }@-ms-viewport { width: 1170px; } @-webkit-viewport { width: 1170px; } @-moz-viewport { width: 1170px; } @-o-viewport { width: 1170px; } @viewport { width: 1170px; }@-ms-viewport { width: 1170px; } @-webkit-viewport { width: 1170px; } @-moz-viewport { width: 1170px; } @-o-viewport { width: 1170px; } @viewport { width: 1170px; }- Svetlana