我有这个布局:
banner
menu
-----
main ||
content ||
我需要横幅+菜单始终可见,该网站适用于移动设备,因此只能在“主要内容”上垂直滚动。但我不知道如何实现这一目标。我将 100% 设置为 body/html,仍然没有乐趣。无论“主要内容”多久,我都只想滚动这个。
position: fixed
在 CSS 中设置横幅/菜单。在此处了解更多信息:http: //alistapart.com/article/css-positioning-101
好的,这样做可以:
<body style="margin: 0px;">
<div style="position: relative; background-color: green; height: 100px;">fixed</div>
<div style="position: absolute; background-color: red; top: 100px; right: 10px; bottom: 10px; left: 10px; ">abs</div>
</body>
但是 100px 的高度正在改变,而不是固定的....