django第一個app,6

https://docs.djangoproject.com/en/2.0/intro/tutorial06/css

1,靜態文件django

在polls 下建立 polls/static/polls/style.cssapp

li a {
    color: green;
}

靜態文件分清項目文件和app文件,放到不一樣地方頗有必要,這樣app就會獨立話,更方便被別的項目應用url

增長背景圖片polls/static/polls/images/background.gif.code

在css裏面直接調用當前地址下的路徑圖片

polls/static/polls/style.cssit

body {
    background: white url("images/background.gif") no-repeat right bottom;
}
相關文章
相關標籤/搜索