Django中的作用域样式



My base.html

...
<body>
{% include 'parts/navbar.html' %}
<div>This is the base content html file</div>
{% block content %} 
{% endblock %} 
{% include 'parts/footer.html' %}
</body>
...

我的导航:

<div>NAV</div>

我的页脚:

<div>Footer</div>
<style>
div {
color: blueviolet;
}
</style>

footer样式也适用于我不想要的nav-div。在Django中是否有可能使用限定样式,或者我必须使用行样式或其他引擎。

Django不处理这个。你可以使用https://sass-lang.com/guide嵌套你的CSS。

相关内容

  • 没有找到相关文章

最新更新