【发布时间】:2020-02-14 21:56:23
【问题描述】:
我想用 bootstrap 创建一个固定的侧边栏和固定的菜单栏和一个内容页面,比如这个例子:
对于菜单栏,我使用以下 css(有效)
.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 0;
}
但是我应该为侧边栏使用什么 css 呢?因为我不知道菜单栏的高度(我不想明确设置它,而是让浏览器选择)。如何将侧边栏附加到菜单栏底部?
.fixed-left {
position: fixed;
left: 0;
z-index: 0;
.... (how to set it fixed to the bottom of the menubar?)
}
谢谢!
【问题讨论】:
-
尝试将
top: 0和bottom: 0添加到.fixed-left
标签: css bootstrap-4 angular-ui-bootstrap