我有一个默认的 bootstrap.css 文件。我正在尝试使用 in 更改项目,但它没有反映我的更改。
我要更改的引导文件
@media(min-width:1200px) { // i want to change the width to 1450px,when i change it here it still refelects as 1200px when the page is run.
.col-lg-6 {
width: 50%;
}
}
我尝试将其添加到我自己的CSS文档中
@media(min-width:1450px) { //doesnt get picked up
.col-lg-6 {
width: 50% !important;
}
}
有什么建议吗?
你在1450px宽度后检查吗?
您的 css 不会改变 1200px 和 1450px 宽度之间发生的情况。
这也发生在我身上。我清除了捕获,它恢复到该网站的旧版本。我不明白。我在蓝色主机上,使用带有 Chrome 和 Firefox 的 Moderna 模板。
我尝试了所有清除此处列出的捕获物以及网络上其他地方的方法。