Skip to main content

grid-template-columns Property in CSS Grid Layouts

grid-template-columns specify the number and widths of columns browsers should display in the selected grid container.

Example 1: How to Create a Two-Column Grid Container

section {
display: grid;
grid-template-columns: 95px 1fr;
background-color: orange;
margin: 10px;
padding: 7px;
}

div {
background-color: purple;
color: white;
margin: 5px;
padding: 10px;
border-radius: 5px;
}

Try Editing It

The snippet above used the grid-template-columns property to display two columns of different widths in the selected <section> grid container.

note

We used the fr (fraction) unit to scale the second column relative to the fraction of available space in the grid container.

Example 2: How to Create a Three-Column Grid Container

section {
display: grid;
grid-template-columns: 15% 60% 25%;
background-color: orange;
margin: 10px;
padding: 7px;
}

div {
background-color: purple;
color: white;
margin: 5px;
padding: 10px;
border-radius: 5px;
}

Try Editing It

The snippet above used the grid-template-columns property to display three columns of different widths in the selected <section> grid container.

note

You can use the grid-auto-columns property to specify default column widths for all the grid container's columns. For instance, grid-auto-columns: 150px will set default widths of 150px for all columns. But a grid-template-columns declaration will override it.

tip

Overview

This article discussed what a CSS grid-template-columns property is. We also used examples to see how it works.

Your support matters: Buy me a coffee to support CodeSweetly's mission of simplifying coding concepts.

Tweet this article