页脚与内容重叠

时间:2017-01-31 07:53:51

标签: css css3 footer sticky sticky-footer

我希望页脚在底部是粘性的(即使用户缩小25%),当我尝试将位置从相对位置更改为绝对位置,但页脚与内容重叠时。

如何解决这个问题?这是我的直播link

CSS:

footer #bottom-footer {
    background: url(/files/image.jpg) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.71);
    text-align: left;
    padding: 50px 0 50px 0;
    font-size: 0.8125em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: normal;
    position: relative;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
}

1 个答案:

答案 0 :(得分:0)

我猜你的意思是页面底部的内容位于固定页脚的下方。

一个修复是将页脚填充量的宽度添加到页脚的父级底部。