bootstrap框架给左侧导航栏id为sidebar加滚动条
时间: 2024-03-14 08:16:53 浏览: 141
Bootstrap 导航栏
可以通过CSS样式来给左侧导航栏id为sidebar加滚动条,具体代码如下:
```css
#sidebar {
height: 100%;
overflow-y: auto;
}
```
其中,`height: 100%;`表示导航栏高度占满父元素的高度,`overflow-y: auto;`表示竖直方向上超出导航栏高度的内容会自动显示滚动条。
阅读全文