-2

我想要一个页眉、正文和页脚。我已经对其进行了编码。当我更改代码时,当我这样给出页脚时,页脚要么位于正文下方

HTML 代码:

<div id="body" style="background-image:url(img/bg.png);" class="body">
<div id="title" class="title">
         <h1><strong></strong></h1>
    </div>

    <div id="desc" class="desc">
    <p style="desc p"></p>
    </div>
 </div> 

<div id="footer" style="background-image:url(img/bottom_bar.png);" class="footer">
<div><h6 class="footer h6">2011-FOOOTER</h6><a href=""><img src="img/info.png" alt="" /></a></div>
</div>

代码:

.body
 {
float:left; float:left; width:100%; height:100%; min-height: 100%; overflow-y: scroll;
 }

.title
{
width:85%; font-weight:bold; float:left; font-size:20px; margin-top:3%; margin-bottom:2%; margin-left:5%; color:#FFFFFF;
}

.desc
{
  width:90%; font-size:15px; margin-left:5%; margin-right:5%; float:left; color: #FFFFFF; overflow:auto; text-align:justify; line-height:18px;
}

.desc p
{
margin-top:0; 
}

页脚的 CSS 代码:

 .footer
    {
         float:left; width:100%; line-font-size:15px; padding:0px; bottom:0px; height:25px;  font-size:18px;
    }

当我将其编码如下时,页脚位于正文上,当您向下时,您可以看到页脚下方的文本

.footer
{
     float:left; width:100%; position:absolute; line-font-size:15px; padding:0px; bottom:0px; height:25px;  font-size:18px;
}

我希望将页脚固定在屏幕底部,并希望文本在没有滚动条的情况下滚动。

有人可以建议我犯了什么错误,在哪里?

4

3 回答 3

2

当然,您会在身体高度为 100% 的情况下将页脚推到身体下方,页脚没有空间留在您的视野中,您需要解决它,无论如何这个问题很常见,您的话可能对您没有帮助,只是您需要搜索“Sticky Footer”在这里回答了很多问题,或者只是用谷歌的魔法你可以看到: http ://ryanfait.com/sticky-footer/ 和http://www.cssstickyfooter.com/

并了解它。祝你好运。

于 2013-05-22T08:33:25.900 回答
2

尝试这种样式,查看滚动条只需删除溢出:隐藏在正文中

html,
body {
    margin:0;
    padding:0;
    height:100%;
    overflow:hidden;
}
#wrapper {
    min-height:100%;
    position:relative;

}
#header {
    background:#ededed;
    padding:10px;
}
#content {
    padding-bottom:100px; /* Height of the footer element */

}
#footer {
    background:#ffab62;
    width:100%;
    height:100px;
    position:fixed;
    bottom:0;
    left:0;
}
于 2013-05-22T10:27:32.747 回答
1

在页脚类中

代替

position:absolute;

采用

position:fixed;

这应该工作

于 2013-05-22T10:23:44.883 回答