Bootstrap没有侧边栏菜单吗?每当我试图研究这个问题时,我都会被重定向到下面的网站。只是好奇,如果getbootstrap官员有一个侧边栏菜单。
https://startbootstrap.com/template-overviews/simple-sidebar/是一个黑石数字网站。
发布于 2018-09-26 20:46:03
对于引导4,没有什么东西像sideNav已经作为一个组件构建,但是,在css和引导提供给您的工具上很少的努力,这不是什么大的事情来做。
//simple css class for the sidenavBox
.sideNavBox {
width: 250px;
position: fixed;
left: 0;
background-color: #545555;
}
https://stackoverflow.com/questions/52524953
复制相似问题