The setup For this article, we’ll continue on with the grid we used in my first CSS Grid article. Then we’ll add the images at the end of the article. Here’s how our initial grid looks: Here’s the HTML: 1 2 3 4 5 6 And the CSS: .container { display: grid; grid-template-columns: 100px 100px 100px; grid-template-rows: 50px 50px; } Note: the example also has a little bit of basic styling, which I w..