0
我正在運行django 1.5.1,我試圖提供一些在我的css中定義的靜態圖像。我沒有問題,在模板中定義的css本身和靜態圖像。在css中定義的樣式也正確地應用於我的模板。唯一不起作用的是在CSS中定義的圖像。Django提供在CSS文件中定義的靜態圖像
這是我的CSS文件的定義類,其包括靜態圖象的樣品:
.outer_banner
{
background:url(/images/banner2.png) bottom center no-repeat;
padding:300px 0;
}
下面是使用在CSS中定義的類我的模板的一個例子:
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<link href="{% static 'css/style.css' %}" rel="stylesheet" type="text/css" />
<!-- more header stuff here -->
</head>
<body>
<section class="outer_banner">
<!-- other stuff here -->
</section>
</body>
</html>
謝謝!
非常感謝!這解決了問題。 – Belethia 2014-09-07 08:40:07