Mobile version responsive design working on browser emulator, but not on the device itself?

Asked

Viewed 17 times

0

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

1 answer

0


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

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

Also missing to close double attribute quotes content:

...content="initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.