学习如何使用 CSS 创建固定/粘性页脚。
亲自试一试
<style> .footer { position: fixed; left: 0; bottom: 0; width: 100%; background-color: red; color: white; text-align: center; } </style> <div class="footer"> <p>Footer</p> </div>
教程:CSS 定位