頁面內容小於一屏時仍能頭部在頭部尾部在尾部
阿新 • • 發佈:2017-05-18
doctype ext center oot ctype ott itl src ade
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>頁面內容小於一屏時仍能頭部在頭部尾部在尾部</title> <style> *{ padding:0; margin:0; text-align:center; } /* html, body {height: 100%;}*/ header{ width:100%; height:50px; background:red; } #box{ width:100%; min-height:100%; /*height:auto;*/ position:absolute; } .container{ width:100%; min-height:100px; height:auto; } footer{ width:100%; height:50px; background:blue; position:absolute; left:0; bottom:0; } </style> </head> <body> <div id="box"> <header> 頭部 </header> <div class="container">內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> 內容區<br/> </div> <footer> 底部 </footer> </div> </body> </html>
效果圖:
頁面內容小於一屏時仍能頭部在頭部尾部在尾部