gpt4 book ai didi

css - @media 屏幕不工作

转载 作者:太空宇宙 更新时间:2023-11-04 08:53:36 25 4
gpt4 key购买 nike

@media screen and (min-width: 501px) and (max-width: 769px)

即使窗口大小为 1920px,也会采用此媒体查询之间的代码!

看这段代码:

.row-contact{
.col-xs-12:first-child {
margin-top: 0;
}
}

@media screen and (min-width: 501px) and (max-width: 769px){
.row-contact {
padding: 0 !important;

.col-xs-12:first-child {
margin-top: 12%;
}
}
}

全屏时我有margin-top: 12%,但是,它必须是margin-top: 0!

为什么这不起作用?

编辑我找到了解决方案!我在写 SCSS 指令之前关闭了媒体查询

感谢您的帮助! :D

最佳答案

.row-contact{
.col-xs-12:first-child {
margin-top: 0;
}
}

@media screen and (min-width: 501px) and (max-width: 769px){
.row-contact {
padding: 0 !important;
}
.col-xs-12:first-child {
margin-top: 12%;
}
}

尝试这种方式,因为如果您不使用 LESSSCSS

,嵌套将不起作用

关于css - @media 屏幕不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43272983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com