當我在頁面上添加<!DOCTYPE HTML>
時,我發現必須將position: fixed;
添加到CSS中才能將圖像顯示爲「div」的背景,否則我會得到空白的白色背景。爲什麼這需要這個位置=在這種情況下是固定的?位置:固定有背景圖片?
.background_image{
position: fixed; <-----Why is this needed & Why doesn't static work?
background: #000 url(../Images/Image.jpg) center center;
width: 100%;
height: 100%;
min-height:100%;
background-size: cover;
overflow: hidden;
}
這裏是示例html。 div中顯然還有其他元素,我正在通過標題中的鏈接導入css。
<body>
<div class="background_image">
</div>
</body>
謝謝...這個偉大的工作。什麼被認爲是在這裏設置背景的正確方法?固定還是靜態? – TsTeaTime
@TsTeaTime,在這種情況下保持靜態。背景附件固定,用於實現paralx效果。 –