讓你的大背景中分離成三個小的部分。
HTML
<div id="start_part">...</div>
<div id="content_part">
<div class="wrapper">...</div>
</div>
<div id="end_part">...</div>
CSS
#start_part {
background: url("top-part.jpg") 0 0 no-repeat;
}
#content_part {
background: url("center-part.jpg") no-repeat fixed center top transparent;
margin: 0 auto;
}
#content_part .wrapper1 {
background: url("top-part.jpg") 1px 0 no-repeat;
width: 100%;
}
#content_part .wrapper2 {
background: url("bottom-part.jpg") 1px 0 no-repeat;
width: 100%;
}
#end_part {
background: url("top-part.jpg") 0 0 no-repeat;
}
希望對大家有所幫助。
這一個真的很有幫助。 – LCTG