1

我的侧边栏有问题...它位于固定的 div 中,因此它与页面一起滚动...但是当它到达页面底部时。在较小的浏览器上,我的侧边栏与 ID 为“sub”的页脚重叠

这是我的侧边栏 css...

.sidebar.sticky {
    position: fixed;
    top: 0;
    max-width: 210px;
}

我怎样才能阻止它重叠我的页脚?

4

1 回答 1

0

margin-bottom在您的 .sidebar css 中有一个属性。假设您的页脚的20px高度将 CSS 设置为margin-bottom:20px;

编辑:您还可以设置底部:20px;

小提琴:http: //jsfiddle.net/WCuq3/

于 2013-03-25T09:41:03.940 回答