我有一个文件css有这样的代码:
background-image: url("../img/mega-menu/corner_image.jpg");
如何在static / img文件夹中指定图像的路径。我不能用
{% load staticfiles %} and {% url %}
在文件css中
答案 0 :(得分:0)
您需要使用完整路径
background-image: url("/whatever_the_static_url_is/img/mega-menu/corner_image.jpg");
答案 1 :(得分:0)
.panel-body {
background-image : url("/static/Images/add.png") !important ;
position: absolute; /* optional */
}