如何在Django中内嵌图像作为背景图像

时间:2018-09-08 17:33:27

标签: html css django

我知道有很多关于如何在Django中使用staic文件以及如何将它们添加到html框架中的条目。我已经搜索了2个小时并尝试了所有解决方案,但没有任何帮助!

我想将图像设置为锂元素背景。我尝试了以下所有方法:

<li style="background-image: url({% static \'images/start1.JPG\'});">
<li style="background-image: url('{% static &ldquo;images/start1.JPG&ldquo;}');">
<li style="background-image: url('{% static &quot;images/start1.JPG&quot;}');">
<li style="background-image: url('{% static \"images/start1.JPG\"}');">
<li style="background-image: '/static/images/start1.JPG';">

我可能只是犯了一个小错误,但是我找不到它,我将非常感谢您的帮助。

我尝试通过以下方式将图像加载到img元素中:

<img src="{% static "images/start1.JPG" %}" alt="My image">

这行得通,所以图像在正确的路径上。

最好, 列尼。

带有“的选项将被解释为html,如下所示:

style='background-image: url("{% static \"images/start1.JPG\"}");

1 个答案:

答案 0 :(得分:0)

好的,我发现了错误。我的base.html文件中有命令{%load staticfiles%}。

我正在扩展该模板,但显然我需要将该命令也放入我的index.html文件中。