欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

footer 貼在底部的布局實現代碼

  發(fā)布時間:2009-10-20 17:03:22   作者:佚名   我要評論
這個網頁即使內容很少的情況下,它也始終在頁面的底部。否則頁面底部將留下大量空白。
footer位置自適應

復制代碼
代碼如下:

<div id="wrap">
<div id="main" class="clearfix">
<div id="content">
ccc
</div>
<div id="side">
sss
</div>
</div>
</div>
<div id="footer">
fff
</div>


復制代碼
代碼如下:

html, body, #wrap {height: 100%;}
body > #wrap {height: auto; min-height: 100%;}
#main {padding-bottom: 150px;} /* 必須使用和footer相同的高度 */
#footer {position: relative;
margin-top: -150px; /* footer高度的負值 */
height: 150px;
background: #ddd;
clear: both;}
.clearfix:after {content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

相關文章

最新評論