固定侧栏,固定页脚

时间:2015-12-14 19:51:06

标签: html css twitter-bootstrap-3

如何在页面滚动时使用不会移动的页脚制作粘性侧边栏。我试过这个css,但它的边栏根本没有出现。

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background-color: #F8F8F8;
}

但边栏根本没有显示出来。我有一个工作演示的小提琴:https://jsfiddle.net/DTcHh/15259/

1 个答案:

答案 0 :(得分:0)

你可以试试这个;

nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: whatver;
    width:whateverpx;
    padding: 10px;
  }

根据页面的需要重命名导航。