#grid-template-areas
default
grid-template-areas: none;
No area is defined.
grid-template-areas:
"header header header" "sidebar main main";
You can use area names to specify which cells each grid item should occupy.
default
grid-template-areas: none;
No area is defined.
grid-template-areas:
"header header header" "sidebar main main";
You can use area names to specify which cells each grid item should occupy.