即使當我重新調整頁面大小時,頁腳仍應保留在底部。在我的情況下,當我重新調整頁面的高度時,頁腳與內容重疊。如果內容非常少,如何將頁腳始終粘貼到頁面底部?
.body{
\t background: #00b7ea; /* Old browsers */
\t font-family:Arial, Helvetica, sans-serif;
\t font-size:85%;
height: 100%;
}
.container{
min-height:100%;
position: relative;
}
.formContainer{
\t width:30%;
height: 100px;
\t background-color:#fff;
\t margin:auto;
padding-top: 0;
\t border-radius:5px;
\t box-shadow:5px 5px 55px #9999;
\t padding-bottom:60px;
}
.footer{
position:absolute;
\t width:100%;
bottom:0;
\t height:60px;
\t background-color:#333;
}
<body class="body">
\t <header class="header">
\t </header>
\t <div class="container">
<div class="formContainer">
</div>
\t \t <footer class="footer">
\t \t </footer>
</div>
</body>
[將頁腳正確粘貼到頁面底部]可能的副本(http://stackoverflow.com/questions/3443606/make-footer-stick-to-bottom-of-page-correctly) –
用於此http ://ryanfait.com/sticky-footer/ –