I need to set the minimum width of the content to 480 pixels so that someone viewing the <= screen will have to scroll the page to view the content. The reason is that it is impossible to make a layout below this resolution.
That's what i
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
I need something like this, but obviously this does not work.
<meta name="viewport" content="width=device-width,, min-width=480px, initial-scale=1, maximum-scale=1, minimum-scale=1">
source share