gpt4 book ai didi

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

转载 作者:技术小花猫 更新时间:2023-10-29 11:31:25 25 4
gpt4 key购买 nike

我想创建一个固定的侧边栏,它位于我居中的 Bootstrap 网格的外部。我在尝试这样做时面临的挑战是确定要对我的 .container 应用/覆盖哪些其他样式,以便在调整屏幕大小时它不会与我的侧边栏重叠。

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

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;
}

最佳答案

As drew_w said , 你可以找到一个 good example here .

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

关于html - 在居中的 Bootstrap 3 网格旁边创建一个固定的侧边栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20557912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com