頁腳置底(Sticky footer)就是讓網頁的footer部分一直在瀏覽器視窗的底部。
當網頁內容足夠長以至超出瀏覽器可視高度時,頁腳會隨著內容被推到網頁底部;
但如果網頁內容不夠長,置底的頁腳就會保持在瀏覽器視窗底部。
<a href="http://www.php.cn/wiki/935.html" target="_blank">margin-bottom</a>
設為負數<p class="wrapper"> <!-- content --> <p class="push"></p> </p> <p class="footer">footer</p>
html, body { margin: 0; padding: 0; height: 100%; } .wrapper { min-height: 100%; margin-bottom: -50px; /* 等于footer的高度 */ } .footer, .push { height: 50px; }
這個方法需要容器裡有額外的佔位元素(p.push
)。
p.wrapper
的margin-bottom
需要和p.footer
的-height
值一樣,注意是負height
。
<a href="http://www.php.cn/wiki/933.html" target="_blank">margin-top</a>
設為負數padding-bottom<a href="http://www.php.cn/wiki/951.html" target="_blank"></a>與頁腳的
height相等。
<p class="content"> <p class="content-inside"> <!-- content --> </p> </p> <p class="footer">footer</p>
html, body { margin: 0; padding: 0; height: 100%; } .content { min-height: 100%; } .content-inside { padding: 20px; padding-bottom: 50px; } .footer { height: 50px; margin-top: -50px; }方法三:使用
設定內容高度
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
.content { min-height: calc(100vh - 70px); } .footer { height: 50px; }
p.content 和
p.footer之間有20px的間距,所以70px=50px+20px
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
html { height: 100%; } body { min-height: 100%; display: flex; flex-direction: column; } .content { flex: 1; }方法五:使用Grid網格佈局
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
html { height: 100%; } body { min-height: 100%; display: grid; grid-template-rows: 1fr auto; } .footer { grid-row-start: 2; grid-row-end: 3; }
#
以上是CSS實現Footer置底的五種方式的分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!