我正在使用引导 4 网格。我有 3 列。我希望第一列和第三列是 col-8,第二列是 col-4。基本上第二列是一个侧边栏,我想放在小屏幕上的第一列和第三列之间。不幸的是,我的第二列具有动态高度并且很长,因此第一列被分配了第二列的高度,而第三列从第二列的底部开始,第一列和第三列之间有很多空间。我希望第 3 列正好位于第一列的文本之下。
我希望这是有道理的。
这是我正在尝试做的图像:
<div class="container">
<div class="row ">
<div class="col-sm-8 ">
<div>One of three columns</div>
<div>One of three columns</div>
</div>
<div class="col-sm-4 ">
<div>Two of three columns</div>
<div>Two of three columns</div>
<div>Two of three columns</div>
<div>Two of three columns</div>
<div>Two of three columns</div>
<div>Two of three columns</div>
</div>
<div class="col-sm-8">
<div>three of three columns</div>
<div>three of three columns</div>
<div>three of three columns</div>
</div>
</div>
</div>