首页 > 网站 > 网页设计 > 正文

永远在网页底部的网页布局代码

2024-08-30 08:36:49
字体:
来源:转载
供稿:网友
看这个网页的底部,为什么会跑到那儿去呢?即使内容很少的情况下,它也始终在页面的底部布局。
否则页面底部将留下大量空白。

下面是它实现的代码:
<div id="wrap">
    <div id="main" class="clearfix">
        <div id="content">
        </div>
        <div id="side">
        </div>
    </div>
</div>
<div id="footer">
</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;
    clear:both;}



兼容性hack:

.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 */
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表