媒体查询在chrome上无法正常工作。但是在Firefox上没问题

时间:2017-01-25 11:13:25

标签: html css google-chrome media-queries

h1 {
  color: blue;
}
@media only screen and (min-width: 480px) {
  h1 {
    color: red;
    font-weight: bold;
  }
}
<h1>Why me red on chrome devtools iphone5(width: 320px)</h1>

在chrome调试工具中,上面的代码会显示为 enter image description here

但在firefox中,它看起来像: enter image description here

顺便说一句,我的chrome是最新版本 enter image description here

我应该做一些配置来使我的Chrome工作吗?

0 个答案:

没有答案