Holy Grail Left Sidebar Right Sidebar 1 Column 2 Columns 3 Columns 4 Columns 5 Columns 6 Columns 7 Columns 8 Columns

Matthew James Taylor Matthew James Taylor

Web design ›

5 Column Responsive Website Layouts

14 Feb 2022 — Updated 20 Mar 2023

Download

These layouts all use the Responsive Columns layout system.

Download All Demos
(responsive-columns.zip 155k)

In this article, I will cover the various types of five-column layouts and show how easy they are to create with the Responsive Columns layout system. You can download all of these demos with the handy link above.

Let's get started.

5 Fixed Columns With Equal-Width & Equal-Height

In this five-column layout, the columns stay side-by-side even on small mobile screens.

1

2

3

4

5

The HTML

<r-c join>
    <c1-5 class="red">
        <!-- 1 -->
    </c1-5>
    <c1-5 class="orange">
        <!-- 2 -->
    </c1-5>
    <c1-5 class="yellow">
        <!-- 3 -->
    </c1-5>
    <c1-5 class="green">
        <!-- 4 -->
    </c1-5>
    <c1-5 class="aqua">
        <!-- 5 -->
    </c1-5>
</r-c>

We add the 'join' attribute to remove all gutters, join the columns together, and add padding. Learn more about gutter mode and join mode in the documentation.

The CSS

.red {
    background:#f97171;
}
.orange {
    background:#f99e50;
}
.yellow {
    background:#f5d55f;
}
.green {
    background:#c5ed77;
}
.aqua {
    background:#72f1d4;
}

We only need CSS for the background colors, all the structural CSS is handled by the Responsive Columns system.

5 Responsive Columns With Equal-Width & Equal-Height

In this five-column layout, the columns are stacked on mobile, two columns wide on tablet portrait, three columns wide on tablet landscape, and five columns wide on desktop.

1

2

3

4

5

The HTML

<r-c join sm1-2 md1-3 lg1-5>
    <c1-1 class="red">
        <!-- 1 -->
    </c1-1>
    <c1-1 class="orange">
        <!-- 2 -->
    </c1-1>
    <c1-1 class="yellow">
        <!-- 3 -->
    </c1-1>
    <c1-1 class="green">
        <!-- 4 -->
    </c1-1>
    <c1-1 class="aqua">
        <!-- 5 -->
    </c1-1>
</r-c>

Add as many columns as you like and they will follow the same number of columns per breakpoint.

The CSS

.red {
    background:#f97171;
}
.orange {
    background:#f99e50;
}
.yellow {
    background:#f5d55f;
}
.green {
    background:#c5ed77;
}

5 Column Responsive Layout With Gutters

In this five-column layout, the columns are separated by gutters. The columns stack vertically on mobile, are two columns wide on tablet portrait, and three columns wide on tablet landscape.

When in two and three column mode, the first column is made two columns wide so both columns are even at the bottom.

First column. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque iaculis lectus vel metus pellentesque, eu venenatis est euismod.

Second column. Nulla eget ligula quis purus molestie malesuada non at nibh. Proin a magna ac velit iaculis pretium. Fusce vitae sollicitudin sapien.

Third column. Quisque iaculis lectus vel metus pellentesque, eu venenatis est euismod. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Fourth column. Proin a magna ac velit iaculis pretium. Nulla eget ligula quis purus molestie malesuada non at nibh. Fusce vitae sollicitudin sapien.

Fifth column. Nulla eget ligula quis purus molestie malesuada non at nibh. Proin a magna ac velit iaculis pretium. Fusce vitae sollicitudin sapien.

The HTML

<r-c>
    <c1-1 md2-3>
        <!-- first column -->
    </c1-1>
    <c1-1 sm1-2 md1-3>
        <!-- second column -->
    </c1-1>
    <c1-1 sm1-2 md1-3>
        <!-- third column -->
    </c1-1>
    <c1-1 sm1-2 md1-3>
        <!-- fourth column -->
    </c1-1>
    <c1-1 sm1-2 md1-3>
        <!-- fifth column -->
    </c1-1>
</r-c>

The Responsive Columns layout system uses tiny custom HTML tags that make coding responsive layouts a breeze. You don't need to know any complicated CSS. See the documentation for more details on the custom HTML tags.

The CSS

No CSS is required for this layout because all the work is done by the Responsive Columns system.

5 Column Layout With Semantic HTML5 Tags

This five-column layout uses semantic HTML5 tags. The columns stack on mobile, are two wide on tablet portrait, four wide on tablet landscape, and five columns wide on desktop.

Column 1

Column 2

Column 3

Column 4

Column 5

The HTML

<article data-r-c data-join>
    <section data-c1-1 data-sm1-2 data-md1-4 data-lg1-5 class="red">
        <!-- Column 1 -->
    </section>
    <section data-c1-1 data-sm1-2 data-md1-4 data-lg1-5 class="orange">
        <!-- Column 2 -->
    </section>
    <section data-c1-1 data-sm1-2 data-md1-4 data-lg1-5 class="yellow">
        <!-- Column 3 -->
    </section>
    <section data-c1-1 data-sm1-2 data-md1-4 data-lg1-5 class="green">
        <!-- Column 4 -->
    </section>
    <section data-c1-1 data-sm1-2 data-md1-4 data-lg1-5 class="aqua">
        <!-- Column 5 -->
    </section>
</article>

The Responsive Columns system is compatible with semantic tags. Full details here: How to use semantic HTML tags with responsive columns.

The CSS

.red {
    background:#f97171;
}
.orange {
    background:#f99e50;
}
.yellow {
    background:#f5d55f;
}
.green {
    background:#c5ed77;
}
.aqua {
    background:#72f1d4;
}

Full Browser Support

Responsive Columns works in all modern browsers, plus all old browsers that support Flexbox:

Need to support old browsers?

If you need to achieve 5 equal-height columns in old browsers (back to IE 5.5) that don't support flexbox CSS, you can use my nested equal-height columns method, here is an example of a 5 column layout without flexbox.

The Responsive Columns Layout System Is Simple And Powerful

You can easily change the widths of your columns and change how they respond to different screen sizes.

Refer to the Responsive Columns Documentation to see how easy it is to create responsive layouts to your exact requirements.

Responsive Columns Layout System

Responsive Columns: Build Amazing Layouts With Custom HTML Tags

How responsive attributes work

Responsive Attributes: Generate CSS Grid Layouts With Simple HTML

Responsive text size

Responsive Font Size (Optimal Text at Every Breakpoint)

A web developer in the engine room

Best Web Development Tools (Free & Paid)

Columns all the same height

Equal-Height Columns (CSS Grid, Flexbox, Floated Containers, & Table Methods)

Boggle dice shaker

Boggle Dice Shaker (Built With Javascript)

Padding bewteen desktop, tablet, and mobile

Responsive Padding, Margin & Gutters With CSS Calc

Holy grail 3 column layout responsive diagram

Holy Grail 3-Column Responsive Layout (CSS Grid & Flexbox Versions)

Footer at the bottom of the page diagram

Bottom Footer (CSS Grid, Flexbox, & Absolute Position Methods)

Open book two column layout

2 Column Layouts (Responsive, Flexbox & CSS Grid)

3 column product comparison layout

3 Column Layouts (Responsive, Flexbox & CSS Grid)

Is CSS margin top or bottom better?

CSS: Margin Top vs Bottom (A Trick You Should Know)

How to add CSS to HTML

How to add CSS to HTML (With Link, Embed, Import, and Inline styles)

Custom elements plus CSS with no javascript

Custom Element Examples (Without Javascript)

A delicious soup made from custom elements

Replace Divs With Custom Elements For Superior Markup

Racing car made from custom tags

Custom HTML Tags (18 Things To Know Before Using Them)

ID vs Class CSS selectors

ID vs Class: Which CSS Selector Should You Use? (6 Examples)

Looking into an empty div

Empty HTML Tags (21 Weird Things You Need To Know!)

Beautiful centered menus with CSS

CSS: Horizontally Centred Menus (With Optional Dropdowns)

Ads that can change size to fit any screen size

Responsive Banner Ads with HTML5 and CSS3

Superman blocking styles

Style Blocker: How To Prevent CSS Cascade With Shadow DOM

Responsive house plan

Responsive House Plan (Web Design Meets Architecture!)

Web design Web design Architecture Architecture Life drawing Life drawing Art gallery Art gallery Synesthesia Synesthesia Comics Comics

About Contact Privacy

© 1994 — 2024 Matthew James Taylor