我知道粘性页脚。但我的情况是我正在开发一个将在 PC 和移动设备上使用的网站。因此,显示的页脚会根据屏幕宽度进行调整。
并且页脚的高度在每个分辨率上都会发生变化。
谁能知道我如何在页面底部(不是屏幕)显示页脚。某些页面的高度很小,页脚显示在页面之间。
我有以下结构:
<body style="height:100%;">
<div style="height:100%;">
<div id="wrapper" style="height:100%; max-width:800px;">
<div id="header">
some content
</div>
<div id="content">
some content
</div>
<div id="footer" style="position:relative; width:100%;">
some content
</div>
</div>
</div>
</body>