如何創建:固定的頁腳

學習如何使用 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 定位