Media queries specified
@media only screen and (min-width: 480px) and (orientation: landscape) @media only screen and (min-width: 768px)
The essence of the first request is to display the version of the site that opens on a computer at 768 (i.e., there is a picture of 600 pixels of width, body size is 768 pixels, all other blocks have a percentage size). At the same time it is necessary to show without a scroll bar in width. In this case, a separate version was created for 320-480. Also indicated:
content = "width = device-width, initial-scale = 1.0">
On iOS, everything works correctly, but on android, a horizontal scroll bar appears and everything is shown in an enlarged view (it is necessary that the page be displayed completely in width). How to get rid of this or solve this problem easier?