我想修改我的布局中的一列。不幸的是,当我修复它时,它不适合父div宽度。有没有办法实现这一点。
HTML:
<div class="row" style="margin-left: 100px;">
<div class="col-sm-9">
</div>
<div class="col-sm-3">Content</div>
</div>
的CSS:
.col-sm-9 { background: red; color: white; }
.col-sm-3 { background: blue; color: white; position: fixed; right: 0; }
这是证明我的问题的jsfiddle:http://jsfiddle.net/F5VmF/2/。