Here's the Difference Between Flexbox, CSS Grid & Bootstrap

Download Now: Free Intro to CSS Guide
Anna Fitzgerald
Anna Fitzgerald

Published:

Web development processes have been evolving since the dawn of the internet: developers have released responsive layout models to make creating and maintaining web pages easier. Along with Bootstrap, the biggest rivalry among supported layout models is CSS Grid vs. Flexbox.

Woman using computer to learn the difference between CSS Grid vs. Flexbox

All webpages require at least a few headings, paragraphs, images, and other navigation properties. If it’s your page, you also want to organize and display these elements effectively and ensure they look good on any screen, from desktops to mobile devices and all the options in between.

Previously, site owners had to “hack” their CSS, using table elements, in-line blocks, floats, and different positioning types. Creating complex layouts required JavaScript as well. These techniques were somewhat effective but missing key functionality, like vertical centering, which made it inconsistent across browsers. They also made the code of a site much more difficult to maintain.

Let’s compare some of the best-supported layout models.

Download Now: 50 Code Templates [Free Snippets]

Let’s walk through each model below starting with CSS Grid.

With CSS Grid, you can align components into columns and rows. This feature makes it ideal for larger layouts that must be divided into sections. In other words, this type of layout will have elements that need to overlap and layer rather than being linear.

Below is a helpful illustration (by developer Ayush Gupta) of a possible layout with CSS Grid.

Two dimensional layout with CSS Grid illustration

Source

With Flexbox, you can lay out and align elements in a container even if you don’t know the size of those elements or if the size might change. That’s because a flex container is, well, flexible: it expands the flex elements to fill space when it’s available and shrinks them to prevent overflow when it’s not.

Below is another helpful illustration by developer Ayush Gupta that shows a layout that’s possible with Flexbox.

One dimensional layout with Flexbox illustration

Source

In an article on CSS Tricks, co-founder of CodePen, Chris Coyier made an important note. Like Flexbox, you can use CSS Grid to create one-dimensional layouts. Also like CSS Grid, Flexbox can be used to create two-dimensional layouts. The difference here is that CSS Grid allows you to create 2D layouts in ways that Flexbox does not.

With Flexbox, you can also create multi-line flex containers. You simply have to apply the flex-wrap property with a value of “wrap” to your container. That way, if your items are too large to all display in one line on a particular viewport, they will wrap onto another line rather than shrink to fit in one row.

This creates rows and columns in a sense. But how wrapped flex items line up on a row is independent of how they lined up on the previous row. That’s because you can’t control where flex elements end up like you can in CSS Grid; flex elements simply inch along a single axis and then wrap accordingly. The layout will look more like bricks than a grid as a result.

Here’s a side-by-side comparison of a layout built with Flexbox and one built with CSS Grid that shows this effect.

Flexbox vs CSS Grid layout comparison illustration

Source

Before we move on, it’s important to understand that these layout models are not mutually exclusive. You can combine them by using a Flexbox container inside a CSS Grid container. Note, however, that you cannot use a CSS Grid Container inside a Flexbox container.

Flexbox vs. Bootstrap

It’s important to understand that Bootstrap 4’s grid system is built with Flexbox. What sets Bootstrap apart from using Flexbox alone is the process of writing code. With Bootstrap, you can create a grid using only HTML. With Flexbox, you must use HTML and CSS. Let’s take a closer look at each process below.

Bootstrap offers a twelve-column system with five default responsive tiers, Sass variables and mixins, and dozens of predefined classes. That means you can use its mobile-first flexbox grid to build unique and complex layouts without having to build them from scratch — it also means you need to understand its unique syntax.

Let’s start with Bootstrap’s column system. Bootstrap has a twelve-column system, which means there can be up to twelve grid columns on a single horizontal block. You can have more than twelve, they’ll just start to wrap rather than show up on a single axis, regardless of the viewport.

Most site owners won’t need anywhere close to twelve columns. In that case, you just need your columns to add up to twelve so they display on a single horizontal block. That means if I want to create two columns, in which one is half the size of the other, I’d use the classes .col-4 and .col-8.

Now let’s say I want to create equal-width columns that display horizontally until they reach a certain screen width and then automatically stack on top of each other. In that case, I’d need to use a responsive grid breakpoint.

The five default responsive tiers of the Bootstrap 4 grid system are listed below. Please note that the value listed in pixels is the breakpoint at which columns will automatically stack on top of each other.

Class prefix device size max container width
.col- extra small devices less than 576px
.col-sm- small devices equal to or greater than 576px
.col-md- medium devices equal to or greater than 768px
.col-lg- large devices equal to or greater than 992px
.col-xl- extra-large devices equal to or greater than 1200px

Because the column system and responsive tiers work together, you’ll often see a number and a prefix defining the .col class. We’ll see that in the example below.

Bootstrap Grid Example

Let’s say I want to create six equal-width columns that stack on top of each other on mobile phones or screens that are less than 576px wide. To do so, I’d use the .col-sm-2 class.

Applying this class to six <div> elements, I’d then wrap these in a row, as shown below.

<div class="row"> <div class="col-sm-2" style="background-color:lavender;">.col-sm-2</div> <div class="col-sm-2" style="background-color:lavenderblush;">.col-sm-2</div> <div class="col-sm-2" style="background-color:lavender;">.col-sm-2</div> <div class="col-sm-2" style="background-color:lavenderblush;">.col-sm-2</div> <div class="col-sm-2" style="background-color:lavender;">.col-sm-2</div> <div class="col-sm-2" style="background-color:lavenderblush;">.col-sm-2</div> </div>

You’ll see I added some inline CSS styling to more clearly see each individual column on the front-end. Here’s the result:

See the Pen Bootstrap Responsive Columns by HubSpot (@hubspot) on CodePen.

Now we’ll walk through an example of building a grid in Flexbox so you can compare both processes.

Flexbox Grid Example

Let’s say I want to create a flexbox grid with six columns, like the one above. In the body section, I’d simply create six <div> elements and wrap them in a <div> element with the .flex-container class. Here’s the HTML code:

<div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> </div>

I’d then add CSS to the head section of my page.

Using the CSS selector .flex-container, I’d make the container flexible by setting the display property to flex. I can then specify the height of the container as well as the background color, as shown below.

.flex-container { display: flex; height: 250px; background-color: gray; }

To style the flex items within the container, I’d use the selector .flex-container > div. I can then set the background color, width, margin, and font size of each item. I can also use the text-align property to set the alignment of the font within each item and the line-height property to set how far from the top of the flex container the font will be displayed.

Here’s the CSS code:

.flex-container > div { background-color: #f1f1f1; width: 100px; margin: 10px; text-align: center; line-height: 60px; font-size: 48px; }

Here’s the result:

Flexbox container example

If I want the flex items to fill up the entire container, no matter how the viewport changes size, I can simply add the flex-basis property in my CSS. Let’s set it to 1 1 150px so that the items grow and shrink from a flex-basis of 150 pixels. Here’s the new CSS:

.flex-container { display: flex; height: 250px; background-color: gray; } .flex-container > div { background-color: #f1f1f1; width: 100px; margin: 10px; text-align: center; line-height: 50px; font-size: 48px; flex: 1 1 150px; }

Here’s the result:

Flexbox container example with flex-basis property set

Additional flex item properties are order, flex-grow, flex-shrink, flex-basis, and align-self. You can learn more about them in A Complete Guide to Flexbox on CSS Tricks.

CSS Grid vs. Bootstrap

Now that we’ve compared CSS Grid vs. Flexbox and Flexbox vs. Bootstrap, let’s compare CSS Grid vs. Bootstrap.

If deciding between these two layout models, ask yourself whether you have your layout structure nailed down or the content. If you’re layout-first, meaning you want to create the layout and then place items into it, then you’ll be better off with CSS Grid. But if you’re content-first, meaning you have items that you want to place into a container and space out evenly, go with Bootstrap. Since Bootstrap is built with Flexbox, you can apply this reasoning to CSS Grid vs. Flexbox as well.

Let’s look at the code of specific examples of grids that can be built with CSS Grid and Bootstrap respectively.

CSS Grid Example

Creating a grid container is simple. You just have to apply the display property to an element and set the value to grid or inline-grid. Styling it is where it gets tricky.

Let’s say I want to create a layout with five items. Here’s the HTML I’d start with:

<div class="wrapper"> <div class="box1">One</div> <div class="box2">Two</div> <div class="box3">Three</div> <div class="box4">Four</div> <div class="box5">Five</div> </div>

Then I’d make it a grid container and change its background color to gray with this CSS:

.wrapper { display: grid; background-color: gray; }

Now let’s say I want to create three equal-width column tracks. You can use the grid-template-columns and grid-template-rows properties to define the rows and columns on your grid and their size (or you can just define one). I can use any length unit, but I’ll use the fr unit. The fr unit represents a fraction of the available space in the grid container rather than a set amount and ensures that grid tracks grow and shrink according to the available space. The CSS for my example would now look like this:

.wrapper { display: grid; background-color: gray; grid-template-columns: 1fr, 1fr, 1fr; }

Notice that we used the grid-template-columns property to explicitly define the columns on our grid, but we did not use the grid-template-rows properties to explicitly define rows. That does not mean your CSS grid has no rows; it just means that rows are defined implicitly. You can set the size for tracks created in the implicit grid with the grid-auto-rows and grid-auto-columns properties.

Let’s say I want to ensure that tracks created in my implicit grid are 100 pixels tall. Then I’d add the following CSS so the final result would be:

.wrapper { display: grid; background-color: gray; grid-template-columns: 1fr, 1fr, 1fr; grid-auto-rows: 100px; }

Finally, I need to place the five items within the grid container. With CSS Grid, you use the grid-column-start, grid-column-end, grid-row-start and grid-row-end properties and set the value to different grid lines. Grid lines are basically the horizontal and vertical dividers of child items in a grid. The grid lines of this three-column, two-row grid, for example, are numbered below:

CSS grid lines illustrated example

Source

So if I want my box1 to span from the far-left line on the grid to the far-right, then I’d place it against column line one and span it to column line four. And, if I wanted it to span one implicit row track, then I’d begin it at row line one and end it at row line two, as shown below. I also have CSS to style box2 and box4.

.box1 { grid-column-start: 1; grid-column-end: 4; grid-row-start: 1; grid-row-end: 2; } .box2 { grid-column-start: 1; grid-row-start: 2; grid-row-end: 4; } .box4 { grid-column-start: 2; grid-row-start: 2; grid-row-end: 4; }

The result would be:

CSS grid container example

You can click the source link to see what CSS I used to style the grid items. It’s from the Flexbox example above.

Bootstrap Grid System

Now let’s say I want to make a row with two columns, one that’s full-width and one that’s half-width so they stack on top of each other on mobile. Here’s the HTML:

<div class="row"> <div class="col-md-8" style="background-color:yellow;">.col-md-8</div> <div class="col-6 col-md-4" style="background-color:lightyellow;">.col-6 .col-md-4</div> </div>

Let’s say I want to make another row with three columns that take up half of the viewport on mobile and a third on desktop.

<div class="row"> <div class="col-6 col-md-4" style="background-color:lightblue;">.col-6 .col-md-4</div> <div class="col-6 col-md-4" style="background-color:blue;">.col-6 .col-md-4</div> <div class="col-6 col-md-4" style="background-color:navy;">.col-6 .col-md-4</div> </div>

Finally, I want to make one last row with two columns that are always 50% wide, no matter what the screen size. Then I’d use the following HTML:

<div class="row"> <div class="col-6" style="background-color:lightgreen;">.col-6</div> <div class="col-6" style="background-color:green;">.col-6</div> </div>

Altogether, this is the result:

Bootstrap mix and match columns example

Creating Unique Layouts

Flexbox, CSS Grid, and Bootstrap are responsive layout models that enable you to create responsive and unique layouts that work across many different browsers and devices. No matter which model you choose, you’ll need some familiarity with HTML and CSS. The good news is with some time and dedication, anyone can start coding.

New Call-to-action

Related Articles

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

Dozens of free coding templates you can start using right now

CMS Hub is flexible for marketers, powerful for developers, and gives customers a personalized, secure experience

START FREE OR GET A DEMO