CSS grid-template-columns
Published Jul 14, 2021Updated Sep 3, 2021
Contribute to Docs
A property that specifies the column structure of a grid container.
Syntax
.grid-container {display: grid;grid-template-columns: <column-space> <column-space>;}
where <column-space> can be one of the following:
- Grid keyword:
auto,minmax() - Pixel value:
300px - Percent value:
25% - Fractional unit value:
1fr
Example 1
The spam-container div encloses several paragraphs of text, split the container into four evenly spaced columns:
.spam-container {display: grid;grid-template-columns: 1fr 1fr 1fr 1fr;/* equivalent to: 25% 25% 25% 25% */}
Example 2
Create left and right columns that adjust to fill the width available and a middle column that has a minimum width of 400 pixels and a max of 1000 pixels:
.eggs-container {display: grid;grid-template-columns: auto minmax(400px, 1000px) auto;}
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn CSS on Codecademy
- Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
- Includes 34 Courses
- With Professional Certification
- Beginner Friendly.115 hours
- A full-stack engineer can get a project done from start to finish, back-end to front-end.
- Includes 51 Courses
- With Professional Certification
- Beginner Friendly.150 hours