我在烧瓶编程中无法在localhost:5000内的HTML中访问CSS和引导文件。
我已经尝试过将CSS文件包含在静态文件夹中,但是它不起作用。
<head>
<title>HOME PAGE</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='bootstrap.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='homestyle.css') }}">
我希望所有CSS模块都包含在HTML文件中,没有任何障碍。
答案 0 :(得分:1)
尝试一下:
<link rel="stylesheet" href="{{ url_for('static', filename='homestyle.css') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='bootstrap.css') }}">
编辑:确保您的文件夹结构符合以下条件:
static/
├── homestyle.css
├── bootstrap.css
templates/
├── index.html
app.py
静态文件夹应位于模板文件夹内的根目录下, 不是 。