Responsive design of the mobile version running on the browser emulator, but on the device itself?

0

In Chrome, Mozilla, and Edge emulators are working perfectly the view of mobile devices, but in the mobile phone it does not stay the same. I'm using the <meta name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0> tag

    
asked by anonymous 26.01.2018 / 05:58

1 answer

0

Failed to specify width=device-width . It adjusts the dimension of the viewport (area of view) by making the page fit the screen size by displaying the elements in real size.

<meta name="viewport" content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0">

In addition to missing the double quotation marks of the content attribute:

...content="initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0>
    
26.01.2018 / 06:42