我试图在我的网站上设置背景图片
但在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
中选择图片
谢谢你提前
答案 0 :(得分:1)
我不知道您的文件夹布局,但您是否尝试过为其提供文件的完整网址?如果这不起作用,只要它对您的文件夹结构有意义,您就可以尝试相对路径,例如"../images/one.png"