0

我的背景图像没有上下滚动,或者它向下滚动太远。我希望它向下滚动到背景图像的底部,然后停止。

<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 &nbsp;Resale</div>
<div id='lineTwo'>blah</div>
<div id='otherLines'>blah<br>blah<br>blah<br>blah<br>blah</div>
</div>
</body>
4

2 回答 2

0

背景附件:滚动默认情况下您不需要指定。您的图像没有滚动,因为您的身体没有足够的高度尝试在 css 中明确给出高度,或者只是在您的身体中添加更多内容。

希望这会对您有所帮助,但如果您提出不同的要求,请详细说明。

于 2013-07-13T03:59:07.477 回答
0

100% 的高度意味着您的全部内容将被显示,但花花公子的背景图像不会在内容中计入(如果您添加 img 标签,那么它将被计入)。所以你需要在 px 中给出与你的 img 相同的高度。例如。

.noWhiteSpace {
    height: 2222px; /* I think that was your background-img height */
    /* your other styling .... */
}
于 2013-07-13T13:48:39.480 回答