Why Chrome Emulation doesn't scale but iPhone Chrome does?

I am trying to emulate a site in the Chrome Develeoper Tool Emulate browser. (Chrome version 36.0.1985.143). But the result is not the same as my mobile phone (also the Chrome browser is there). But that's the same setting in Chrome desktop emulation. IPhone 4. device I've tried with and without my view meta tag:

<meta name="viewport" content="width=<?=($_SESSION['resp'] != 'no' ? 'device-width, initial-scale=1.0, user-scalable=no' : '1021')?>" />

      

and this result doesn't work:

<meta name="viewport" content="width=1021" />

      

But as I said, I tried even without viewing. I also tried with and without "Viewport Emulation".

Here is a desktop printer:

Desktop printscreen

And here is the Mobile Printer:

Mobile printscreen

+3


source to share


1 answer


This comment answer solved the problem:

You should try using the current Chrome Canary (38). Device emulation has been improved recently. - Alexander Pavlov



thank

+1


source







All Articles