4

我查看了该主题的其他问题,但答案对我没有帮助。这有点难以解释,但我会尝试。所以我有一个页脚:

#fußzeile{
    width: 100%;
    background-color: #e9e8e5;
    padding-top: 14px;
    padding-bottom: 14px;
    bottom: 0;
    padding-left: 24px;
    height: 36px;
    text-align: center;
}

我尝试过overflow: hidden, height: 100%等等。我使用 margin-top 将包装器向下推然后它可以工作,但是如果我最小化站点,差距又回来了..位置:绝对/相对也不起作用..

4

4 回答 4

4

尝试在您的 css 中使用以下内容:

#fußzeile{
    position: fixed;
    bottom: 0px;
}
于 2013-10-11T09:53:26.047 回答
1

尝试这个:

#fußzeile{
    display:block;
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    background-color: #e9e8e5;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    height: 36px;
    text-align: center;
}

是一个工作演示。

于 2013-10-11T09:58:55.563 回答
1
position: absolute;
width: 100%;

这通过添加 2 行代码为我纠正了它。

于 2016-01-19T14:23:34.190 回答
0

当页脚上方没有内容时会发生这种情况。您可以尝试将页脚 div 移到任何容器外(如果它包含在容器中,请确保它是 html 的直接子级),然后将 POSITION 设为绝对;

于 2013-10-11T10:01:20.590 回答