I need the content on the site that is smaller than 480px to scale (like an adaptive picture), and all so that the elements from the layout fit on small screens (corresponding to a 480px wide layout). Has the viewport filled correctly? Or are there better solutions?

<meta name="viewport" content="width=479px, initial-scale=.7, width=device-width, initial-scale=1"> 
  • @Air Simply, there is a 480px website layout, and on devices that will be less than 480px, do you need to keep the same layout of elements without media queries? - stiv
  • I did this: <meta name = "viewport" content = "width = 480, initial-scale = 1"> Solves the problem, but is this the right approach? Please answer in the comments, who knows - stiv
  • Right ........... - Air

0