我有两个 django 模板页面,其中之一是“base.html”,基本的 html 标签设置为基本模板。现在我有一个扩展它的页面“child.html”,里面有类似{% extends "base.html" %}
的东西。现在我必须更改<body>
这个特定页面的背景颜色,所以在“child.html”的 css 中我写道:
body {
background-color: #000000;
/* some other css here */
}
但身体似乎对任何变化都没有反应。我想我一定错过了什么。请帮忙,谢谢。
编辑: 在“child.html”中,我只是有
<link rel="stylesheet" type="text/css" href="/site-media/css/template_conf.css"/>
我尝试在 中更改 body css template_conf.css
,并且没有其他页面包含template_conf.css
.