0%

Python Django 教程6

Python Django 教程6

本教程将主要为Django应用添加一张样式表和一张图片。

样式表

创建下列代码:

polls/static/polls/style.css

1
2
3
li a {
color: green;
}

下一步,在polls/templates/polls/index.html的顶端添加如下内容 :

1
2
3
4
polls/templates/polls/index.html
{% load staticfiles %}

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

添加背景图片

我们将创建一个子目录来存放图片。 在polls/static/polls/目录中创建一个 images 子目录。在这个目录中,放入一张图片background.gif。换句话,将你的图片放在 polls/static/polls/images/background.gif。

然后,向你的样式表添加(polls/static/polls/style.css):

1
2
3
body {
background: white url("images/background.gif") no-repeat right bottom;
}

重新加载http://localhost:8000/polls/,你应该在屏幕的右下方看到载入的背景图片。

处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!

欢迎关注我的其它发布渠道