我的問題是特定於背景圖片。我已經將背景圖像應用於身體並水平居中。對於每個頁面,我將在標題下添加一個段落,並且每個頁面的大小都會不同,從而導致滾動。背景圖片必須在段落後面流動,但我無法讓身體標記展開以包含段落,這意味着向下滾動時背景圖片會被切掉。我不想設置特定的高度,因爲這會使頁面滾動到段落之外。我已經嘗試了幾乎所有可以考慮的位置相對/絕對和身高/高度的組合。擴大div超出屏幕尺寸
<html>
<body>
<div class="paragraph">
<p>text!</p>
</div
</html>
CSS
html {
background: url('/images/bg.png');
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
}
body {
margin: 0;
padding: 0 0 50px 0;
background-image: url('../images/fullheader.gif');
background-position: center 20px;
background-repeat: no-repeat;
position: absolute;
top: 0px;
bottom: 0px;
right: 0px;
left: 0px;
min-height: 100%;
}
.paragraph {
width: 640px;
padding: 10px 20px;
margin: 400px auto 0 auto;
min-height: 100%;
}
我可以張貼的屏幕截圖是否有幫助。
請創建一個[小提琴](http://jsfiddle.net)你的問題。 – 2013-04-24 12:05:34
給我看一個小提琴或屏幕截圖? – 2013-04-24 12:34:27
爲什麼不嘗試整頁背景圖像這裏是一個參考http://css-tricks.com/perfect-full-page-background-image/ – 2013-04-24 12:35:18