Bootstrap 4 Grid Examples
<!-- main_leaderboard, all: [728,90][970,90][320,50][468,60] --> Bootstrap 4 Grid Examples ❮ Previous Next ❯ Below we have collected some examples of Bootstrap 4 grid layouts. Three Equal Columns Use the .col class on a specified number of elements and Bootstrap will recognize how many elements there are (and create equal-width columns). In the example below, we use three col elements, which gets a width of 33.33% each. col col col Example <div class="row"> <div class="col">col</div> <div class="col">col</div> <div class="col">col</div> </div> Try it Yourself » Three Equal Columns Using Numbers You can also use numbers to control the column width. Just make sure that the sum adds up to 12 or fewer (it is not required that you use all 12 available columns): col-4 col-4 col-4 Example <d...