页脚,不固定在底部,滚动页面

时间:2012-05-12 02:24:47

标签: css width footer

继承我的页面http://sketchedneo.com/indexex.php

所以页脚在Include php

#footer {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    left: 0px;
    right:0px;
    width: 100%;
    background: #c9c9c9;
    height: 125px;
    color: #868686;
    text-align: center;
    border-top: 3px solid #EBEBEB;

}

页脚需要位于页面底部(如堆栈溢出)而不是滚动页面。

有人知道解决方案吗?

1 个答案:

答案 0 :(得分:1)

position:fixed;
    left: 0px; bottom:0px; right:0px; 
    background: #c9c9c9;

    color: #868686;
    border-top: 3px solid #EBEBEB;  
    text-align: center;  z-index: 1000;

这样做,你也第二次在第1465行定义了#footer