CSS:显然不应调用媒体查询

时间:2019-06-27 21:14:11

标签: css google-chrome

我将使其简单化:

这是示例项目整个范围中的唯一代码,它将背景变成红色。

@media only screen and (min-width: 768px) and (orientation: portrait) {
        background: red;    
    }

我无法解释为什么min-width明显位于768px以下时,为什么在此Chrome响应式模拟器中看到红色背景:

enter image description here

2 个答案:

答案 0 :(得分:2)

我无法复制该问题。既然您说这是唯一的代码,难道不应该有CSS类选择器吗?

@media only screen and (min-width: 768px) and (orientation: portrait) {
    .someClassName {
      background: red;    
    }
}

答案 1 :(得分:-1)

答案是我使用的是min-width而不是min-device-height-一旦我切换到device-height对比height,事情就开始起作用了。