0

我无法弄清楚为什么页脚上的黑条没有出现在窗口的基线上。我不希望它在滚动时“固定”。就在绝对底部

html { 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

body {
    padding-top: 15px; /* 60px to make the container go all the way to the bottom of the topbar */
    background: #f7f7f7 repeat-x url(<%=image_path('background.png')%>) top left;
    font-family: Helvetica, Arial, sans-serif;
    color: #323232;
}

footer{
    margin: 0px;
    padding: 10px;
    background: black;
    color: white;
    position: absolute;
    left:0;
    right: 0;
    bottom: 0;

}

在此处输入图像描述

4

1 回答 1

1

当我希望页脚“粘性”时,我总是使用这个常见问题的非常可靠的解决方案。

于 2013-02-07T19:55:17.343 回答