我已经阅读了有关在烧瓶中显示背景图片的其他问题,但没有一个建议的解决方案适合我,我得到404错误(127.0.0.1 - - [22 / Feb / 2018 15:13:33] “GET /img/showcase.jpeg HTTP / 1.1”404 - )。我想要设置为背景的jpeg图像位于静态文件夹中,名为showcase.jpeg。这是我的代码。有什么建议?这是我的style.css的HTML链接:
<link rel="stylesheet" type="text/css" href="{{url_for('static',filename='style.css')}}">
CSS FILE:
#showcase{
background-image: url({{ url_for ('static', filename = 'showcase.jpeg') }});
height: 100vh;
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 20px;
font-weight: bold;
}
答案 0 :(得分:4)
答案 1 :(得分:1)
这是我的目录树结构: directory tree structure
你可以写下这样的背景图像:
background-image: url(../img/nodejsEventLoop.png);
答案 2 :(得分:0)
做:
background-image: url('/static/showcase.jpeg');
它对我有用。
答案 3 :(得分:0)
做:
background-image: url('../images/pic.png');
哪里static->images->pic.png
。