使用custom.css覆盖引导

时间:2018-10-01 14:56:14

标签: css django override

我正在使用django,并尝试使用如下custom.css覆盖正在调用默认bootstrap.min.css的base.html:

base.html:

<body id="bootstrap-overrides">

custom.css:

#bootstrap-overrides body {
    color: blue;
}

#bootstrap-overrides h1 {
    color: green;
}

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

但是,什么都没有真正改变。这是Django中的路由问题吗?

2 个答案:

答案 0 :(得分:1)

尝试:

body#bootstrap-overrides {...}

如果您想尝试CSS文件是否正常工作

body {
 background:red !important;
}

答案 1 :(得分:1)

尝试更换:

#bootstrap-overrides body {
color: blue;

}

具有:

#bootstrap-overrides {
color: blue;

}

或:

body {
    color: blue;
}