I want to optimize the site for several specific permissions (width = 1366 \ 1920 \ 1280 \ 960).
And I want the minimum width of the site when opening to be 960, even if the site is open on the screen with a width smaller than 960. (I do it through the @media screen )
I want to know:
- If I write
<meta name="viewport" content="min-width=960, initial-scale=1">in the DOM head, will my idea be implemented with the minimum resolution? - Are there any more productive ways besides the
@media screenimplement permissions optimization?
I would appreciate the help!