Skip to main content

{clairecodes}

Selecting the last n elements in CSS

  2 minute read
  Categories: 

Let’s a take a bog-standard list: 🚽📋

<ul>
    <li>Doris Lessing</li>
    <li>Angela Carter</li>
    <li>Ann Patchett</li>
    <li>Iris Murdoch</li>
</ul>

Quick, off the top of your head: 👴

  • How would you select only the last list item? li:last-child
  • What if we added another item to the list. How would you select only the last 2 elements? li:nth-last-child(-n+2)
  • A final list element is added: there’s now 6 li’s and we want only the last 3. How do we do that? We need yet another selector: li:nth-child(n+4)

But actually, we could have used that last selector all along and it would have been more resistant to the changing structure of the list, considering our requirements: which were that we always wanted to miss the first 3 elements and select anything after them, regardless of how many other li’s there were in the list.

On the other hand 👋, what about if the list was changing length but you always wanted just the last 3 elements? You could have stuck with nth-last-child(-n+3). See, depends on your requirements and how you phrase the question.

Aside

People get snobby about using w3schools resources but I love the “Try it yourself” examples for playing around with selectors like this: they’re easy to google for an example you want and simple to modify. Spend less time being critical and elitist and putting beginners off just so you sound like you know what you’re talking about and more time writing code! 👃 Fin.

🔞 P.S.

nth-child, nth-last-child and other helpful advanced selectors are not supported in IE8.

Read more 📓