Django設定前端背景圖片
阿新 • • 發佈:2020-09-15
設定 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%;" >