How would I achieve the following using CSS grid:
I have tried the following:
.gridContainer{
display: grid;
grid-template-columns: auto auto auto auto auto ;
grid-template-areas: "Red Blue ";
grid-template-rows: auto;
.Red{
grid-area: Red;
max-width: 500px;
}
.Blue{
grid-area: Blue;
max-width: 250px;
}
}
But the blue squares just stack one on top of each other. There will be more blue squares added in and they must stack around the red one.