Is grid-area used with grid-template-areas, like the example below
grid-template-areas: "head head"
"nav main"
"nav foot";
#page > header {
grid-area: head;
background-color: #8ca0ff;
}
And also as a shorthand for grid-row-start, grid-column-start, grid-row-end, grid-column-end?