我有一个基本的烧瓶应用程序,我在我的css文件中像这样引用背景图像
.three {
background:url('/static/images/house.jpg');
}
我的文件夹组织是这样的:
project
app.py
-static
-images
house.jpg
-css
index.css
-templates
index.html
如何让我的CSS正确调用图像?
答案 0 :(得分:1)
将您的CSS改为此,然后再试一次:
.three {
background-image: url('images/house.jpg');
}