1. 程式人生 > >Django設定前端背景圖片

Django設定前端背景圖片

設定 setting.py 檔案

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
]

 

在根目錄建立 static\img 資料夾

 

在 html 檔案頂部新增 {% load static %}

 

 

 

在 body 中新增 <body style="background-image: url({% static 'img/hd.jpg' %});background-size:100% 133.5%;" >