1
在居中的Bootstrap 3网格旁边创建固定的侧边栏
我想创建一个固定的边栏,该边栏位于居中的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; }