我正在使用Flask编写一个Web应用程序,并且我已经制作了一个我很满意的CSS模板。我想使用Bootstrap中的wtf.quick_form()
功能,但我无法覆盖自己的CSS而无法加载Bootstrap。我想要做的只是加载quick_form()
功能。最好的方法是什么?
答案 0 :(得分:3)
嗯,有一个previous question涵盖了使用自定义CSS的主题,但老实说,如果你只想使用Bootstrap作为quick_form()
,你不需要经历所有那个。
假设您有 base.html 文件:
<!DOCTYPE html>
{% extends "bootstrap/base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block styles %}
{{ super() }}
<link rel="stylesheet"
href="{{url_for('static', filename='style.css')}}">
{% endblock %}
在其他地方建议您在加载'style.css'
文件后加载'bootstrap.css'
文件,但是您可以使用简单的link rel
转到{{ 1}}如果您只想加载'style'.css'
。只需确保您记得在基本模板或要使用的模板文件quick.form()
中导入"bootstrap/wtf.html"
。