Reputation: 196
I am following an online course & in The Bootstrap project they classified one row into more than 12 Columns, so is it possible .. I really got confused!?
Upvotes: 0
Views: 614
Reputation: 1291
There is 12 columns per row on Bootstraps' grid system. In your example, the third column col-lg-6
will display at the second row(new line) on the large breakpoint, like this below :
1(col-lg-6) | 2(col-lg-6)
3(col-lg-6) |
https://getbootstrap.com/docs/5.2/layout/grid/#row-columns
Upvotes: 1