1

我试图让页脚贴在我的网页底部,但它只浮动了一半。我看了几个例子,我看不出我做错了什么。任何帮助将不胜感激。我的简化代码如下所示。

<html>
<head>
</head>

<body>
    <div id = "wrapper">
        <!--Wrapper div for the main content-->
    </div>
        <!--Footer container-->
    <div class="footer">    
    </div>
</body>

</html>


--CSS-- 

body
{
height: 100%;
margin: 0;
padding:0;
background-color: #1A1F2B;
min-width: 960px;

}

#wrapper{
min-height: 100%;
}

.footer{
position: relative;
margin-top: -150px; /* negative value of footer height */
height: 150px;
clear:both;
display: block;
background-color: #232A3B;
}
4

2 回答 2

5

如果您希望它位于底部document

.footer {
    position: absolute;
    bottom: 0;
}

如果您希望它位于视口的底部:

.footer {
    position: fixed;
    bottom: 0;
}
于 2012-09-18T16:29:48.510 回答
1

如果您希望页脚 div 位于页面底部并跨越整个宽度,这将起作用:

.footer {
    position: absolute;
    bottom:0;
    height: 150px;
    width: 100%;
    background-color: #232A3B;
}

HTML5 还支持标签<footer>这可能使机器人更容易处理您网页上的信息。要更改它,只需使用footer {而不是.footer {更改 HTML 标记。

于 2012-09-18T17:13:57.670 回答