我需要为我的网站提供可调整大小的菜单和内容背景图片,因此只要菜单条目太多,或者内容超出内容背景的边框,它们就会被拉伸。我需要垂直拉伸。
请你,请给我一个提示(一个实际的答案也会有效)或一个好例子的链接?
非常感谢你!
答案 0 :(得分:1)
您可能需要将一组元素组织成以下内容:
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%;
}