我将使其简单化:
这是示例项目整个范围中的唯一代码,它将背景变成红色。
@media only screen and (min-width: 768px) and (orientation: portrait) {
background: red;
}
我无法解释为什么min-width
明显位于768px
以下时,为什么在此Chrome响应式模拟器中看到红色背景:
答案 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
,事情就开始起作用了。