Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumCSSgrid template rows cols areasSingle-choice MCQ

In a CSS Grid, what does the `grid-template-areas` value require for the layout to be valid?

.grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "header header" "sidebar main"; }