Django 中的范围样式
Scoped Styling in Django
我的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>
页脚样式也适用于我不想要的 nav-div。
Django 中的范围样式是可能的还是我必须使用线条样式或某些引擎等
Django 不处理那个。
您可以使用 https://sass-lang.com/guide 并嵌套 CSS.
我的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>
页脚样式也适用于我不想要的 nav-div。 Django 中的范围样式是可能的还是我必须使用线条样式或某些引擎等
Django 不处理那个。 您可以使用 https://sass-lang.com/guide 并嵌套 CSS.