【问题标题】:Why are some of my media queries not taking effect [duplicate]为什么我的一些媒体查询没有生效[重复]
【发布时间】:2022-01-04 18:11:52
【问题描述】:

我的一些媒体查询没有生效。当我去我的检查面板并调整响应尺寸时。它们适用于 1024px,但适用于 768px。我必须关闭 1024px 的查询。它不应该是浏览器应该检测到宽度已经改变并自动应用对该宽度的查询但它没有发生。我想知道为什么?

@media screen and (max-width:425px) {

             //code here
}

@media screen and (max-width:768px) {

           //code here
}

@media screen and (max-width:1024px) {

          //code here
}

【问题讨论】:

标签: html css css-selectors


【解决方案1】:
@media screen and (max-width: 425px) {
    
}

@media screen and (min-width: 426px) and (max-width: 768px) {
        
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    
}

【讨论】:

猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2015-04-29
  • 1970-01-01
  • 2012-09-23
  • 1970-01-01
  • 2022-07-01
  • 1970-01-01
  • 2022-01-17
相关资源
最近更新 更多