Chrome v23 does not support viewport-wide metadata or metadata?

I made HTML5 Webapp and I want it to automatically scale to the size of the window on a PC (not mobile). so i add it to css:

@-ms-viewport { width: 1024px; } @-webkit-viewport { width: 1024px; } @-moz-viewport { width: 1024px; } @-o-viewport { width: 1024px; } @viewport { width: 1024px; } 

In IE10 (Win8), OK, if the window size is smaller, everything in html is smaller. html decreased.

but in Chrome v23, if the window size is smaller, everything in html does NOT scale at all. Chrome v23 does not support viewport scale?

enter image description here

+7
source share
1 answer

No, @viewport is not yet implemented in Chrome . As far as I know, the viewport meta tag was implemented only in mobile browsers, and not on the desktop.

+4
source

All Articles