我想將圖片加載到我的頁面並將其設置爲我的背景,下面是我正在使用的CSS和HTML。該CSS頁面似乎加載,因爲我的測試字體和背景顏色顯示,但無論出於什麼原因,我的背景圖像沒有。CSS背景圖片無法加載
我使用Django作爲我的web框架。
感謝幫助!
HTML:
<!DOCTYPE html>
{% load staticfiles %}
<html lang="en">
<head>
<title>Test</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="{% static 'personal/css/frontpagebackground.css' %}" type = "text/css"/>
</head>
<body>
<p>This is a test</p>
</body>
</html>
CSS:
body
{
background-image:url(personal/static/personal/img/home.jpg) no-repeat;
background-repeat:no-repeat;
background-size:100%;
background-color: green;
min-height: 100%;
}
p {
font-style: italic;
color: red;
}
從背景圖像中刪除'no-repeat',因爲您已經將它放在單獨的屬性'background-repeat'中,並查看它是否有效。 –