Bootstrap’s grid system is built using the flexbox. It converts the web page into 12 columns. A grid system is a two-dimensional layout which means it can work with both rows and columns at a time. A user can merge columns to get the required results or a specific layout.

Grid System

Bootstrap’s Grid system divides the page into 12 columns. As in the example below .col class is used to make columns and all the grid system is dependent on this .col class. This grid system is the best approach to stack the content horizontally and allow the page utilization to maximum.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/Bootstrap-5-Grid-system-Explained-1.png" data-lazy- height="73" src="data:image/svg xml,” width=”666″>

Code

<body>


    <div class=“container mt-5”>


        <div class=“row”>


            <div class=“col aqua”>.col</div>


            <div class=“col yellow”>.col</div>


            <div class=“col orange”>.col</div>


            <div class=“col blue”>.col</div>


            <div class=“col skin”>.col</div>


            <div class=“col pink”>.col</div>


            <div class=“col aqua”>.col</div>


            <div class=“col yellow”>.col</div>


            <div class=“col orange”>.col</div>


            <div class=“col blue”>.col</div>


            <div class=“col pink”>.col</div>


            <div class=“col skin”>.col</div>


        </div>


    </div>

</body>

To make different layouts we use .row and .col class.

Col class without any size

If you didn’t specify the size of the columns, .col class automatically divides the row equally according to the number of divs with .col classes in it.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/Bootstrap-5-Grid-system-Explained-2.png" data-lazy- height="54" src="data:image/svg xml,” width=”567″>

Code

<div class=“row”>


   <div class=“col aqua”>.col</div>


   <div class=“col yellow”>.col</div>


   <div class=“col orange”>.col</div>


</div>

In this example I only add three divs with the .col class without specifying the number of columns but the .col class automatically gives the merging of 4 columns to each div and covers 12 columns collectively.

Col class with size

If the columns sizes are specified, then .col class divides the row according to the specified size from 0-12.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/Bootstrap-5-Grid-system-Explained-3.png" data-lazy- height="48" src="data:image/svg xml,” width=”555″>

Code

<div class=“row”>


   <div class=“col-4 aqua”>.col-4</div>


   <div class=“col-6 pink”>.col-6</div>


   <div class=“col-2 skin”>.col-2</div>


</div>

In this example I add three divs with .col class and specify the number of columns as 4, 6 and 2. Now these three columns still cover 12 columns space but now with different sizes. This helps a user to manage the content in a page and utilize it to maximum.

Example 2

This example is for the problem in which the size of the divs exceeds 12.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/Bootstrap-5-Grid-system-Explained-4.png" data-lazy- height="66" src="data:image/svg xml,” width=”562″>

Code

<div class=“row”>


   <div class=“col-4 aqua”>.col-4</div>


   <div class=“col-6 pink”>.col-6</div>


   <div class=“col-5 skin”>.col-5</div>


</div>

Now in this example the first 2 divs already cover 10 columns in a row leaving the space for two more columns but the third div comes with the columns size 5 which results in moving the third div to the next row to cover 5 column space which leaves 2 columns space in the first row empty. So to avoid this kind of a problem, always make sure to divide columns in a way which covers 12 columns space collectively in a row.

Col class with breakpoints

.col class is also used with different breakpoints to control the content view on different screens.

  • .col-xxl
  • .col-xl
  • .col-lg
  • .col-md
  • .col-sm

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/Bootstrap-5-Grid-system-Explained-5.png" data-lazy- height="285" src="data:image/svg xml,” width=”776″>

Code

<body>


    <div class=“container mt-5”>


        <div class=“row”>


            <div class=“col-md aqua”>.col-md</div>


            <div class=“col-md pink”>.col-md</div>


            <div class=“col-md skin”>.col-md</div>


        </div>


    </div>


</body>

In above example three divs are created using .col-md class is act just like .col class but the difference between simple .col class and .col-md class is that .col class distribute columns equally to each div, then act same on every screen size but .col-md class also distribute columns equally among each div but it remain same only on xxl, xl, lg and md screen sizes but as soon as it goes below medium screen size all the divs cover whole 12 columns each which result in making three rows and stack them vertically.

Col class with breakpoints and sizes

.col class is also used with different breakpoints to control the content view on different screens, but to see these classes in action must specify their sizes too.

  • .col-*
  • .col-xxl-*
  • .col-xl-*
  • .col-lg-*
  • .col-md-*
  • .col-sm-*

Replace * with the number from 0-12.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/Bootstrap-5-Grid-system-Explained-6.png" data-lazy- height="285" src="data:image/svg xml,” width=”740″>

Code

<body>


    <div class=“container mt-5”>


        <div class=“row”>


            <div class=“col-md-4 aqua”>.col-md-4</div>


            <div class=“col-md-6 pink”>.col-md-6</div>


            <div class=“col-md-2 skin”>.col-md-2</div>


        </div>


    </div>


</body>

In above example I apply .col-md-* class on three divs with the size 4,6,2, as it shown that this class is applicable on double extra large(xxl), extra large(xl), large(lg) and medium(md) screen as soon as screen size goes below medium(md) screen all the divs resize them self and cover 12 columns each which result in 3 rows and each row is stacked vertically. This is how dynamic and flexible layouts are created.

Conclusion

To work in a bootstrap grid, use .row class and wrap it around .col class if you want to assign equal columns to each div but if you want to assign different number of columns to each div then use .col-{size} (0-12) to divs as your requirement. However, if you want to make more flexible and dynamic layout use .col class with breakpoints(xxl/xl/lg/md/sm), plus specify their sizes (0-12) too .col-{breakpoint}-{size}.

About the author

<img data-del="avatar" data-lazy-src="https://kirelos.com/wp-content/uploads/2022/04/echo/7011409B3A384F43A8417D1DAC68D179-150×150.jpg625e240c2778c.jpg" height="112" src="data:image/svg xml,” width=”112″>

Shehroz Azam

A Javascript Developer & Linux enthusiast with 4 years of industrial experience and proven know-how to combine creative and usability viewpoints resulting in world-class web applications. I have experience working with Vue, React & Node.js & currently working on article writing and video creation.