背景图象在Django的网站增加

时间:2017-06-21 07:19:55

标签: python html css django

我试图在我的网站上设置背景图片

但在style.css文件中看不到,此错误为"Cannot reslove directory 'Images'

CSS:

background: white url("images/one.png") no-repeat right bottom;

的index.html:

{% load staticfiles %} <link rel="stylesheet" type="text/css" href="{% static 'music/style.css' %}"/>

我想从music/images/one.png中选择图片 谢谢你提前

1 个答案:

答案 0 :(得分:1)

我不知道您的文件夹布局,但您是否尝试过为其提供文件的完整网址?如果这不起作用,只要它对您的文件夹结构有意义,您就可以尝试相对路径,例如"../images/one.png"