gpt4 book ai didi

html - 我的媒体查询没有生效

转载 作者:行者123 更新时间:2023-11-27 23:05:34 24 4
gpt4 key购买 nike

我在使用媒体查询时遇到了一些问题。这是一个非常基本的东西,但由于某种原因不起作用。

基本上,我在 div 标签周围有一个边框:

<div class="container games mobile">
<div class="row">
<div class="col-lg-8 div border">
<!-- This div tags are closed at the end of the file -->

我正在使用 Bootstrap ,老实说我不知道​​这是否是问题的一部分,但我想做的是在用户使用移动设备时删除该边框,为此,我添加了以下内容我的 css 文件中的行:

@media screen and (max-width: 600px) {
.border {
border: none;
}
}

Border on computer

Border on mobile即使我使用了查询

(在两个打印件上都添加了一个灰色方 block ,因为内容实际上并不需要在此处,但可以找到实时预览 here)

问题是否与 parent > child 有关?

提前致谢!

最佳答案

它不工作,因为它被 Bootstrap 代码覆盖。试试这个:

@media (max-width: 600px) {
.border {
border: none !important;
}
}

关于html - 我的媒体查询没有生效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49638256/

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