如何使用元视口标记,它的作用是什么?

时间:2012-06-05 06:12:24

标签: html5 meta-tags viewport

  1. 哪些浏览器支持此元标记?
  2. 我如何使用它?
  3. 这是否意味着它将解决我所有的移动调整大小问题?
  4. 如果有人能回答这个问题,那对新手学习会有很大帮助

    <meta="viewport">
    

4 个答案:

答案 0 :(得分:21)

  1. 视口浏览器支持有点全面。我会指向Quirksmode page for viewport browser support以获取完整的详细信息。
  2. 您可以像使用任何其他元标记一样使用视口元标记。将代码块直接放在<head>
  3. 差不多,但是再一次,在这里说一点点。我建议reading some articlesreading the W3 mobile best practices for web designthe current W3 draft specifications on the viewport attribute for the <meta> tag
  4. 简而言之,将此行添加到应实现视口缩放的网站应该可以解决大多数问题。 (从WebDesignTuts+'s "Quick Tip: Don't Forget the Viewport Meta Tag" article复制)

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

    P.S。 Quirksmode也有a rather wonderful article describing the issue,值得一读,以了解为什么这可能会有所帮助。

答案 1 :(得分:6)

关于元视口的另一篇文章,其各种属性以及如何在您的设计中使用它是http://dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport/

还有一个slidedeck详细解释了一些内容,还有一个Github repo

免责声明:我是这些资源的作者。

答案 2 :(得分:3)

您可以查看mozilla博客的所有详细信息

https://developer.mozilla.org/en/Mobile/Viewport_meta_tag

答案 3 :(得分:0)

Meta视口标记用于根据查看屏幕的大小调整网站的大小和可见性。它可以帮助网页自动适应Android,平板电脑或iPhone。