所謂 「Sticky Footer」,並非什麼新的前端概念和技術,它指的就是一種網頁效果: 若是頁面內容不足夠長時,頁腳固定在瀏覽器窗口的底部;若是內容足夠長時,頁腳固定在頁面的最底部。但若是網頁內容不夠長,置底的頁腳就會保持在瀏覽器窗口底部。
先來看看下面的例子, 代碼以下css
<div class="header"> 頂部 </div> <div class="main"> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> </div> <div class="footer"> <i class="fa fa-copyright" aria-hidden="true"></i> <div>底部</div> </div>
.header { background-color: #3498DB; height: 50px; line-height: 50px; text-align: center; color: #fff; } .main { overflow: auto; box-sizing: border-box; } .footer { background-color: #ECF0F1; height: 50px; line-height: 50px; text-align: center; }
細心讀者應該發現問題了,底部 footer 位置會隨着主體內容高度變化自動變化,當主體內容小於視口的高度時, footer 並無黏貼在底部. 那麼解決這樣問題尼?html
<div class="main"> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> </div> <div class="footer"> <i class="fa fa-copyright" aria-hidden="true"></i> <div>底部</div> </div>
html, body { height: 100%; } .header{ background-color: #3498DB; height: 50px; line-height: 50px; text-align: center; color: #fff; position: fixed; width: 100%; } .main { min-height: 100%; overflow: auto; box-sizing: border-box; padding-bottom: 50px; padding-top: 50px; margin-bottom: -50px; } .footer { background-color: #ECF0F1; height: 50px; line-height: 50px; text-align: center; }
使用以下屬性前端
calc() 是 CSS3引入的,讓你在聲明CSS屬性值時能夠執行一些計算.
它能夠用在一些數值場合; 詳細能夠查閱這裏 MDNcanvas
vh(Viewport Height): 顧明思議,表示的是視口的高度.瀏覽器
詳細信息以及兼容能夠查閱這裏: caniuseflex
針對上面的代碼進行修改,以下spa
.main { min-height: calc(100vh - 50px - 50px); }
這樣完成咱們指望的,可是有個缺點就是每次咱們都要去計算 header、footer 的高度.
這顯然不完美, 假如DOM結構層級多的話,須要計算的內容更多.code
absolute相信你們熟悉不過了,這裏就不在囉嗦了; 這裏注意這個就行, absolute 元素其位置是根據什麼來進行計算並進行定位的?htm
<div class="header"> 頭部 </div> <div class="main"> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> </div> <div class="footer"> <i class="fa fa-copyright" aria-hidden="true"></i> <div>底部</div> </div>
html{ position: relative; min-height: 100%; } body{ margin-bottom: 50px; } .header { background-color: #3498DB; height: 50px; line-height: 50px; text-align: center; color: #fff; } .main { overflow: auto; } .footer { position: absolute; bottom:0; width: 100%; background-color: #ECF0F1; height: 50px; line-height: 50px; text-align: center; }
代碼是否是很簡單,這裏主要 position的應用:blog
1 默認狀況下, 當給某個元素設置爲 position:absolute 時, 在祖先元素沒有設置 position: absolute or fixed or relative
時, 其默認相對於初始包含塊( initial containing block ).
2 什麼初始化包含塊?
The containing block in which the root element lives is a rectangle called the initial containing block. For continuous media, it has the dimensions of the viewport and is anchored at the canvas origin;
這是w3c對包含塊介紹, 這段話大概意思, 根元素(document)爲默認爲初始化包含塊,其初始化塊的大小爲視口的大小.
理解這幾個概念後,咱們再來看上面的代碼就一目瞭然了!
html{ position: relative; min-height: 100%; } body{ margin-bottom: 50px; }
Flexbox是最完美的方案。只須要幾行CSS代碼就能夠實現,並且像上面計算或添加額外的HTML元素。
Flexbox介紹能夠查閱 阮一峯老師這邊文章
修改代碼以下:
<div class="container"> <div class="header"> 頂部 </div> <div class="main"> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> <p>中間部分</p> </div> <div class="footer"> <i class="fa fa-copyright" aria-hidden="true"></i> <div>底部</div> </div> </div>
html, body { height: 100%; } .container { display: flex; flex-direction: column; min-height: 100%; } .header { background-color: #3498DB; height: 50px; line-height: 50px; text-align: center; color: #fff; } .main { overflow: auto; box-sizing: border-box; flex: 1; } .footer { background-color: #ECF0F1; height: 50px; line-height: 50px; text-align: center; }
最終效果以下:
negative =margin、固定寬度、absolute 都依賴底部高度爲固定.
通常推薦使用 flex box 實現方式; 具體用那種能夠根據具體場景來使用.