how to use a blank space with grid template areas css

Solutions on MaxInterview for how to use a blank space with grid template areas css by the best coders in the world

showing results for - "how to use a blank space with grid template areas css"
Eliza
01 Jun 2020
1.container {
2  display: grid;
3
4  grid-template-columns: 2fr 2fr 1fr 2fr;
5  grid-template-rows: 100px 200px 100px;
6
7  grid-template-areas:
8    "head head . side"
9    "main main . side"
10    "footer footer footer footer";
11}