Chrome v23不支持视口比例或视口元标记?

时间:2013-01-03 16:03:34

标签: javascript html5 google-chrome css3 viewport

我制作了一个HTML5 Webapp,我希望它可以通过PC(非移动设备)上的窗口大小自动缩放。 所以我在css中添加它:

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

在IE10(Win8)中,没关系,如果窗口调整得更小,html中的所有内容都会更小。 html缩小了。

但是在Chrome v23中,如果窗口调整得较小,那么html中的所有内容都不会缩放.Chrome v23不支持视口比例?

enter image description here

1 个答案:

答案 0 :(得分:4)

不,@viewport is not yet implemented in Chrome。据我所知,viewport元标记只能在移动浏览器中实现,而不是桌面版。