在居中的Bootstrap 3网格旁边创建固定的侧边栏


69

我想创建一个固定的边栏,该边栏位于居中的Bootstrap网格之外。尝试执行此操作时,我面临的挑战是确定要向我应用/覆盖的其他样式,.container以便在调整屏幕大小时不会与侧边栏重叠。

对于初学者,我仅使用css框架的网格部分,因此和是从文件本身提取的代码.container.row并且不是自定义的。还要记住,我正在使用Bootstrap 3,因此,请不要提出以前线程中经常问到的Bootstrap 2流体网格解决方案的建议。.col-md-12bootstrap.css

的HTML

<div id="left-nav"></div>
<div class="container">
   <div class="row">
      <div class="col-md-12">
         <p>Lorem ipsum dolor sit amet, nunc dictum at.</p>
      </div>
   </div>
</div>

的CSS

html, body {
  height: 100%;
  width: 100%;
}
#left-nav {
  background: #2b2b2b;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 250px;
}

19

看起来是这样。非常感谢。
卡尔·爱德华兹

上面的链接不再起作用。
Ejaz Karim 2014年


@EjazKarim我已经复制了下面
eggy

Answers:


112

如drew_w所说,您可以在这里找到一个很好的例子

的HTML

<div id="wrapper">
    <div id="sidebar-wrapper">
        <ul class="sidebar-nav">
            <li class="sidebar-brand"><a href="#">Home</a></li>
            <li><a href="#">Another link</a></li>
            <li><a href="#">Next link</a></li>
            <li><a href="#">Last link</a></li>
        </ul>
    </div>
    <div id="page-content-wrapper">
        <div class="page-content">
            <div class="container">
                <div class="row">
                    <div class="col-md-12">
                        <!-- content of page -->
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

的CSS

#wrapper {
  padding-left: 250px;
  transition: all 0.4s ease 0s;
}

#sidebar-wrapper {
  margin-left: -250px;
  left: 250px;
  width: 250px;
  background: #CCC;
  position: fixed;
  height: 100%;
  overflow-y: auto;
  z-index: 1000;
  transition: all 0.4s ease 0s;
}

#page-content-wrapper {
  width: 100%;
}

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width:767px) {

    #wrapper {
      padding-left: 0;
    }

    #sidebar-wrapper {
      left: 0;
    }

    #wrapper.active {
      position: relative;
      left: 250px;
    }

    #wrapper.active #sidebar-wrapper {
      left: 250px;
      width: 250px;
      transition: all 0.4s ease 0s;
    }

}

JSFIDDLE


人们将如何更改代码以使其坚持正确呢?
Masb

2
@masb我建议试图改变的所有引用padding-leftmargin-leftleftpadding-rightmargin-rightright分别
eggy

1
我真正喜欢的是它没有标记和CSS c肿。因此,我可以轻松地查看代码并理解它,然后进行必要的更改。
Donato

2
这很棒!我唯一想看到的调整是在顶部有一个全角导航栏。然后侧边栏仅在顶部导航栏下方开始...
ganders

7
这不是一个好的解决方案,容器具有以像素为单位的宽度,并通过将其移至左侧填充来调整大小,这意味着您将获得滚动条。
米娜·卢克
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.