-1

这是我的页面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;

}

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

请问有人知道解决方法吗?

4

1 回答 1

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

于 2012-05-12T02:43:46.290 回答