如何 - 固定页脚
学习如何使用 CSS 创建固定/粘性页脚。
如何创建固定页脚
示例
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>
<div class="footer">
<p>页脚</p>
</div>
自己尝试 »
提示:转到我们的 CSS 位置教程 了解更多关于定位的信息。