简体   繁体   English

使用custom.css覆盖引导

[英]bootstrap overiding with custom.css

I am using django and trying to override base.html that is calling the default bootstrap.min.css with a custom.css like this: 我正在使用django并尝试使用如下的custom.css覆盖正在调用默认bootstrap.min.css的base.html:

base.html: base.html:

<body id="bootstrap-overrides">

custom.css: custom.css:

#bootstrap-overrides body {
    color: blue;
}

#bootstrap-overrides h1 {
    color: green;
}

#bootstrap-overrides p.uppercase {
    text-transform: uppercase;
}

however, nothing really changes. 但是,什么都没有改变。 Is it a routing problem in django? 这是Django中的路由问题吗?

Try : 尝试:

body#bootstrap-overrides {...}

If you want to try if your CSS file is working 如果您想尝试CSS文件是否正常工作

body {
 background:red !important;
}

Try replacing: 尝试更换:

#bootstrap-overrides body {
color: blue;

} }

with: 与:

#bootstrap-overrides {
color: blue;

} }

or: 要么:

body {
    color: blue;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM