如何修复Bootstrap col。
我试过这样但是没有用:
<div class="row">
<div class="col-md-6">Content goes here...</div>
<div class="col-md-6" style=" position: fixed">Content goes here...</div>
</div>
fixed
位置使col成为绝对位置。
当页面从顶部400px向下滚动时,如何禁用固定位置。
答案 0 :(得分:0)
使用媒体查询仅应用特定屏幕宽度以上的固定位置。例如,768px是Bootstrap 4 md
断点:
CSS(min-height
是可选的):
@media (min-width: 768px) {
.fixed-posi {
width: 50%;
margin-left: 50%;
min-height:100%;
position:fixed;
}
}
然后,在布局中使用fixed-posi
,就像这样......
<div class="row">
<div class="col-md-6">
Content goes here...
</div>
<div class="col-md-6 fixed-posi">Content goes here... (fixed position)
</div>
</div>
演示:https://www.codeply.com/go/751CygARyO
类似的问题(左边固定的DIV):How to left column fixed and right scrollable in Bootstrap 4, responsive?