Возможно, вам понадобится организовать группу элементов примерно так:
HTML:
<div id="element">
<div id="elementTop">
<div id="elementBottom">
</div>
</div>
</div>
CSS:
#element {
// tileable background image, repeat-y;
}
#elementTop {
// top, fixed portion of the background image, no-repeat
}
#elementBottom {
// bottom, fixed portion of the background image, no-repeat, set to:
background-position: 0 100%;
}