下面是我的“引导配置”:
<div class="container">
<div class="row">
<div class="col-12 col-lg-3">
<div class="card mb-3 cardtrans">
// Here goes card-body / header and all the other stuff inside it.
</div>
</div>
</div>
</div>
我使用PHP循环显示每张新卡片。
我用上面的代码在同一行中对齐4张卡片。我想在每一个新行中看到5张卡片。我应该使用什么类?或者我需要额外的CSS代码吗?
1条答案
按热度按时间ws51t4hk1#
用于 Bootstrap 4.6.x
使用Row Columns中的
row-cols-lg-5
,您不需要设置每个元素的列宽,而只需设置行的列数,bootstrap会将溢出内容打包到下一行。