Not sure why container's 'grid-template-areas' property and grid-item's 'grid area' property are not working! https://codepen.io/rfrostr/pen/XWmzewp
<div class="grid-container">
<div class="one">One</div>
<div class="two">Two</div>
<div class="three">Three</div>
</div>
.grid-container {
display: grid;
grid-template-columns: repeat(3, 33.333%);
grid-template-areas:
"three two one"
"one two three";
}
.one {
grid-area: one;
}
.two {
grid-area: two;
}
.three {
grid-area: three;
}