Saoud ElTelawy
Saoud ElTelawy

Reputation: 196

Bootstrap 5 Grid System .. More than 12 Columns in a row?

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!?

The row had planned to have col-lg-6 for 3 times

Upvotes: 0

Views: 614

Answers (1)

zhengchun
zhengchun

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

Related Questions