我正在编写一个需要CSS的Flask Web应用程序。我认为我使用了正确的语法。
我的Web应用程序刚刚开始,而CSS也很简单。我不知道为什么烧瓶无法加载CSS。
我用于将CSS链接到html文件的代码
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
image contains file structure, code and localhost browser image
答案 0 :(得分:0)
您在尝试获取<link rel="stylesheet" href="{{url_for('static', filename='/static/style.css')}}">
时遇到HTTP 404错误。您在这里的问题中正确地找到了这一行,但是在Jinja模板(在屏幕截图中)中,其内容为:
/static/
即filename
中添加了<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
。删除并使其可读
{{1}}