使用Bootstrap 將頁腳刷新到頁面底部
問題:
問題:
使用困難使用Twitter Bootstrap 將頁腳刷新到頁面底部,特別是考慮到其回應性質。如何有效地實現這一點?
答案:Bootstrap 2.2.1 現已包含此功能。
對於Bootstrap 3.x:<div class="navbar navbar-fixed-bottom"></div>將導航欄組件與".navbar-fixed-bottom" 類:
對於Bootstrap 4.x:
<div class="navbar fixed-bottom"></div>合併以下程式碼:
body { padding-bottom: 70px; }此外,請確保合併以下樣式以防止頁面內容被模糊:
文件:有關詳細信息,請參閱官方Bootstrap文件:http://getbootstrap.com/components/#navbar-fixed-底部。
以上是如何在 Bootstrap 中將頁腳固定在頁面底部?的詳細內容。更多資訊請關注PHP中文網其他相關文章!