DEV Community

bright inventions
bright inventions

Posted on • Updated on • Originally published at brightinventions.pl

Simulating nth-of-class CSS selector

My experience with frontend web development is not long yet, nevertheless, I have already got stuck a few times and spend like a few hours trying to find one perfect solution. I reckon that some of them are worth describing.

Image

I have a list of HTML tags in which a few first have a certain class while the others don‘t. What I want to achieve is styling the last element having the class.
If you look for a pure CSS solution with no JavaScript and no changes in your HTML, I have some bad news: there is no such. Of course, you shouldn‘t believe me and look for it on your own. But if you happen to find one, please come back and feel free to comment. And if you fail, read on and see if one of the below solutions might suit you.

The initial case was to add a separator between <li> tags. This is pretty easy:

li:not(:last-of-type) {
    border-bottom: 1px solid black;
}

Now, to make it more complicated, some of the elements are initially hidden and might be turned to visible on a button click. The hidden elements have class hidden. Quite natural for me was to add the class selector and have:

li:not(.hidden):not(:last-of-type) {
    border-bottom: 1px solid black;
}

To my surprise, it didn‘t work. I though a selector like li.hidden:last-of-type filters out elements of type li with class hidden and then selects the last of them. It turned out that it actually selects the last element of type li and then checks if it has class hidden. A subtle difference, right?

The solution to my problem was actually straightforward – adding the top border instead of the bottom one was a way to go. After all, the hidden elements are hidden and so are their borders.

li:not(:first-of-type) {
    border-top: 1px solid black;
}

Using adjacent sibling selector is even more readable.

li + li {
    border-top: 1px solid black;
}

And this could be the end. I have found a solution to my problem, committed, pushed and deployed. But what if I really needed to style that last element of the class? Is there a way to do that? As already said, no. At least not yet.

In the Selectors Level 4 Editor‘s Draft there is the newest version of nth-child pseudo class described. It introduces an optional clause of S which filters out the children to only the ones matching the S selector. This is only a draft yet and as so shouldn‘t be used in any production code - check caniuse.com for browsers support.
Confirmed to work in Safari, which already supports it:

li:nth-last-child(1 of li:not(.hidden)){
    border-top: 1px solid black;
}

What can we do now? Unfortunately, the answer is: break one of the rules we have previously established.

  1. Break the "no changes in HTML" rule, i.e. divide the elements into two separate lists: one with the elements always visible and one with the hidden ones.
  2. Break the "no JavaScript" rule and just use jQuery:
$("li:not(.hidden):last").addClass("last-not-hidden")

The nice last selector is jQuery specific and therefore cannot be used in CSS nor in JavaScript.

  1. Break the "no JavaScript" rule and use pure Javascript:
const notHiddens = document.querySelectorAll("li:not(.hidden)");
const lastNotHidden = notHiddens[notHiddens.length - 1];
lastNotHidden.classList.add("last-not-hidden");

This is more verbose than the previous one, however you might not necessarily need jQuery just for a simple DOM manipulation.

OK, to be honest, I have found one „pure CSS solution“, but for me it‘s neither pure nor a solution, just a really strange walk around. Take a look, you might find it at least interesting.

So this is it. No clear and nice solutions. I‘m lucky that I do not need to have this solved in any real projects, and how about you? How have you handled such a case?

Originally published at brightinventions.pl

By Agnieszka Olszewska, Software Engineer @ Bright Inventions
Email

Top comments (0)