Direct link to the article grid-template

grid-template

The grid-template CSS property is a shorthand that allows you to define grid columns, rows, and areas in a CSS grid container with one declaration.

.grid-container {
  display: grid;
  grid-template:
    "header  header"
    "sidebar main"   1fr
    "footer  footer" min-content
    / 250px   
Avatar of Mojtaba Seyedi
Mojtaba Seyedi on (Updated on )