【发布时间】:2017-10-12 15:09:47
【问题描述】:
我在页面底部有一个固定高度的页脚。是否可以滚动我的页面内容,使其在固定页脚的顶部结束?
在这里解决我的问题:fiddle
非固定元素的最后 250 像素(页脚高度)在页脚后面滚动,并且在滚动条到达页面底部时不可见。
<div style="height: 500px; width: 50%; background-color: yellow;"></div>
<div style="height: 500px; width: 50%; background-color: blue;"></div>
<div style="height: 500px; width: 50%; background-color: green;"></div>
<div style="position: fixed; width: 100%; height: 250px; bottom: 0; background-color: #ccc;">
Fixed Footer
</div>
【问题讨论】: