使用chrome设备工具栏和媒体查询进行响应式布局调试

时间:2017-05-30 14:46:59

标签: html css google-chrome responsive-design media-queries

我正在尝试使用html和css为我的应用程序编写登录表单。 在我的CSS中我正在使用@media - 查询:

@media (max-width: 767px){
    body {
        font-size: 25px;
    }
    ... and some more
}

因此,在超过767px的分辨率下,它看起来像这样: enter image description here

当我调整到低于767px的分辨率时,它看起来像这样(全部更大,没有阴影框等): enter image description here

然后,我在Google Chrome中更改为设备视图 enter image description here

我切换到iPhone 5,其分辨率为width:320pxheight:568px 结果看起来像这样(比大于767px的那个):

enter image description here

看起来不应该低于767px?

1 个答案:

答案 0 :(得分:1)

在头部添加视口标记,如:

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

有关视口的更多信息:

  

https://www.w3schools.com/css/css_rwd_viewport.asp