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?

Joy
source share