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:

  1. 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?
  2. Are there any more productive ways besides the @media screen implement permissions optimization?

I would appreciate the help!

  • Found the answer just now, unfortunately only for 1 question. <meta name = "viewport" content = "width = 960, initial-scale = 1"> - and what I wanted was received. - Lyosha Volosnikov

0