I've been trying to create a column that has a 3 across the top by two rows down. So far I've only been able to create the first row but I don't know how to break it onto the second row.
.container {
display: flex;
justify-content: space between;
}
.column {
display: inline block;
padding: 0.5em;
display: block;
width: 33.333%;
}
<div class = "container">
<div class="column"><img src = "image.jpg" alt = "photo of title and logo" width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of title and logo "width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of wortherspoons" width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of title and logo" width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of title and logo "width="600" height="300"></div>
<div class="column"><img src = "image.jpg" alt = "photo of wortherspoons" width="600" height="300"></div>
</div>