我使用Bootstrap网格系统动态布局我页面上的内容。但是,当滚动条出现时,流体布局的宽度会发生变化,使其看起来有点刺耳。
有什么方法可以解决这个问题吗?
答案 0 :(得分:0)
让我知道您在动态内容中需要多少个网格?
让我解释一下,如果您想在动态内容中使用3个网格,那么将循环放在具有类行的div中,并确保带有类行的div位于容器或容器流体中。
<div class="container-fluid">
<div class="row">
/* your loop code goes here with grid class */
<div class="col-md-3"> /*whenever you loop work then this div will repeat*/
your content
</div>
</div>
</div>