5 columns per row in Bootstrap-4
问题 I have 15 records, I want to show all of it in a 5 columns per row. So I am using the auto column available in bootstrap 4 ".col", is there a way to limit column counts per row? Note: I have to continuously loop the columns without breaking the row. I want to achieve something like this [ 1][ 2][ 3][ 4][ 5] [ 6][ 7][ 8][ 9][10] [11][12][13][14][15] Here's my current code: <div class="row"> <!-- this will create 15 col --> <div class="col" ng-repeat="record in records"> {{record.title}} </div>