1 Thing A Week 1 Thing
A Week

Getting it wrong with CSS Grid!

Week 196.0 — 26th July '21

A few weeks ago I came up with an idea on a listing layout I'd like to use in the future. I've put in a mockup of how I wanted it to work below, nothing too complex but it felt like something that was perfect for CSS grid only I couldn't quite work out the correct way to cook up the right mix of N-match notation to get the layout to work.

Illustration showing a list layout with hero items that are wider than their siblings that do not need as much prominence.

How I got it wrong

Everything I tried worked for the first two larger blocks and their smaller siblings. Once I got to the third it fell down because it was inheriting styles from the previous blocks thanks to selectors like .major + li:nth-child(even), .major + li:nth-child(odd) to match them no matter where they came in the order.

The only way to explain the issue was that I was just trying to be too clever with N-match notation. In fact, you don't even need it for this situation. For some reason, I assumed CSS Grid would honour the column that would have come naturally. CSS Grid is far cleverer than that and actually collapses in exactly the way I was trying to solve with N-match notation.

The solution with CSS Grid

After declaring my grid against the ul, this is the code required to create the larger blocks while the CSS engine just figures out the rest:

li {
  padding: 10px;
  &.major {
    border: 1px solid red;
    grid-column: 1 / 3;
  }
}

That's really all I had to do. Let the browser figure out the order in CSS Grid and focus on the elements that need to be different.

I really should have started with the basics, but it wasn't obvious to me when I first tried. Here's the working layout on Codepen:

More from 1 Thing A Week
« Restoring the screen on my original GameBoy Taking advantage of image compression Mercedes-Benz SEC series Why I'm unable to chart and share the step data from iOS »

Advertisement

Notable

Quick links and commentary on interesting articles, videos and more throughout the week.

  1. 196.1 – Monday
    1. Scissor hangers toxel.com
    2. 2021 iPhone Photography Awards ippawards.com
  2. 196.2 – Tuesday
    1. "Ghostbusters Afterlife" trailer 2 Ghostbusters on youtube.com
  3. 196.4 – Thursday
    1. Fjorden iPhone camera control   €119 Fjorden on kickstarter.com

Jump to notable items for Week #195, Week #197 , view the notable archive or my favourites.

About 1 Thing A Week

A website curated by @cchana bringing you 1 Thing A Week, delivered every Monday morning.

You can find a list of all articles in the archive, or read the most popular.

Find out more about 1 Thing A Week or read the privacy policy.

Market

Visit the market and support 1 Thing A Week.

You can find 1 Thing A Week on Twitter, Facebook, Instagram & Reddit