我的背景圖片沒有向上和向下滾動,否則它向下滾動太多。我希望它向下滾動到背景圖像的底部,然後停止。背景圖片不滾動?
<head>
<style type='text/css'>
.noWhiteSpace {
margin-left:0;
margin-right:0;
margin-top:0;
background-color:#F4F7E3;
background-image:url('/front_page.jpg');
background-repeat:no-repeat;
background-size:100%;
height:180%;
}
.words {
font-family:Madelinette;
text-align:center;
margin-left:25%;
margin-top:10%;
}
#lineOne {
color:#5f4e2b;
font-size:5em;
}
#lineTwo {
color:#629040;
font-size:4em;
padding-bottom:2%;
}
#otherLines {
color:#952221;
font-size:2em;
}
</style>
</head>
<body class='noWhiteSpace'>
<div class='words'>
<div id='lineOne'>Crafters Resale</div>
<div id='lineTwo'>blah</div>
<div id='otherLines'>blah<br>blah<br>blah<br>blah<br>blah</div>
</div>
</body>
'background-attachment:scroll'表示它滾動顯示內容。如果您的內容不夠長,則不會滾動。它不獨立於容器。 – kalley
發佈你的問題的相關代碼,它會幫助我們回答你的問題 – vals