【发布时间】:2015-08-13 03:21:55
【问题描述】:
我正在尝试设置带有可滚动内容的固定不可滚动侧边栏。它类似于Make column fixed position in bootstrap,但在该示例中,侧边栏具有可变宽度。
我试过了:
.fixed {
position: fixed;
width: 290px;
}
.scrollit {
float: left;
}
<div class="row">
<div class="col-md-3 fixed">
Fixed content
</div>
<div class="col-md-9 scrollit">
scrollable
</div>
</div>
但它只是将 2 列相互叠加。
我尝试复制的网站示例位于http://demo.elated-themes.com/borderland9/contact/
谢谢
【问题讨论】:
标签: css twitter-bootstrap