Why does .class:last-of-type not work as I expect?

HtmlCssCss Selectors

Html Problem Overview


Why does this not work? http://jsfiddle.net/84C5W/1/

p{
    display: none;
}
p.visible:last-of-type {
    display: block;
}

<div>
  <p class="visible">This should be hidden</p>
  <p class="visible">This should be displayed</p>
  <p class="">This should be hidden</p>
</div>

In fact, none of my <p> elements are visible. If I remove the reference to .visible in my selector, this does show the last <p> in the div, but this is not what I want.

Of course I could only keep one .visible at all times, but this is for a reveal.js presentation and I do not have control over the JavaScript.

How can I select the last element inside the div WITH the class .visible? I do NOT want to use JavaScript for this.

Html Solutions


Solution 1 - Html

Your issue is that you're reading :last-of-type and thinking it works as a :last-of-class selector, when instead it specifically means elements only. There is no selector for the last instance of a class, unfortunately.

From the W3C:

> The :last-of-type pseudo-class represents an element that is the last sibling of its type.

You have p.visible:last-of-type as your selector, which does the following:

  1. looks at each list of elements (e.g. 1 or more elements; a child with no siblings can still have :last-of-type applied to it) within each containing element in your HTML
  2. finds the last element in that list
  3. checks to see if it is a <p> element
  4. checks to see if it has the class .visible on it.

In short, your selector will only apply its styles to a <p> that also has the class .visible on it. In your markup, only the first two <p> elements have that class; the third does not.

Here's a demo of different styles to illustrate:

p:last-of-type {
  /* this will be applied in the third paragraph because the pseudo-selector checks for nodes only */
  color: green;
}
p.visible:last-of-type {
  /* this does not get applied, because you are using the pseudo-selector with a specific class in addition to the node type. */
  color: red;
}

<p class="visible">First paragraph.</p>
<p class="visible">Second paragraph.</p>
<p>Third paragraph.</p>

Per your ultimate goal,

> How can I select the last element inside the div WITH the class .visible? I do NOT want to use JavaScript for this.

The simplest and most performant way is to invert the way you're trying to apply the styles; instead of trying to hide two out of three divs, where one of the divs to hide has a class and the other div to hide has no class, and the div you want to show shares the same class as the one div you want to hide which also has a class (see? that's pretty confusing), do the following:

  • Only add the class to the element (or group of elements) that's smaller.
  • Set the default style for the element to be what you don't want the class to achieve.
  • Set the style on the class to be what you want to achieve.

p {
    display: none;
}
.visible {
    display: block;
}

<div>
    <p>This should be hidden</p>
    <p class="visible">This should be displayed</p>
    <p>This should be hidden</p>
</div>

As you can see from this demo, not only are your HTML and CSS simpler, but this also has the benefit of using only a class selector rather than a *-of-type pseudo-selector, which will make the page load faster (see more on that below).

Why is there no followed by or parent selector? This could potentially bog down the speed of a lot of webpages by changing just one class name dynamically on the page.

Dave Hyatt, while working on the WebKit implementation in 2008, mentioned some reasons why these implementations are avoided:

> With parent selectors it becomes extremely easy to accidentally cause > a document-wide grovel. People can and will misuse this selector. > Supporting it is giving people a whole lot of rope to hang themselves > with. > > The sad truth about CSS3 selectors is that they really shouldn’t be > used at all if you care about page performance. Decorating your markup > with classes and ids and matching purely on those while avoiding all > uses of sibling, descendant and child selectors will actually make a > page perform significantly better in all browsers.

Solution 2 - Html

The problem is that :last-of-type only matches element selector. In your example, you try to match a class selector. That's why it's not working.

An example: http://dabblet.com/gist/4144885

Solution 3 - Html

Target the second last tag.

.visible:nth-last-of-type(2) {}

Solution 4 - Html

For future reference, this will be covered in CSS level 4: https://www.w3.org/TR/selectors4/#the-nth-last-match-pseudo

Browser support at the moment of writing, is non-existant: http://css4-selectors.com/selector/css4/structural-pseudo-class/

When this is ready, this should be the solution:

p {
  display : none;
}
p.visible:nth-last-match(0) {
  display : block;
}

<div>
  <p class="visible">This should be hidden</p>
  <p class="visible">This should be displayed</p>
  <p class="">This should be hidden</p>
</div>

Solution 5 - Html

This was the way I got around the non-class problem - it's a Javascript solution, unfortunately:

function lastOfType(className){
            var allElemsOfType = document.getElementsByClassName(className);
            if (!allElemsOfType || !allElemsOfType.length) return null;
            else return allElemsOfType[allElemsOfType.length - 1];
    }

lastOfType('visible').style.display = 'block'

.visible {
  display: none;
}

p {
  display: none;
}

<p class='visible'>1</p>
<p class='visible'>2</p>
<p>3</p>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Question&#216;ystein AmundsenView Question on Stackoverflow
Solution 1 - HtmlJustus RomijnView Answer on Stackoverflow
Solution 2 - HtmlSimon BoudriasView Answer on Stackoverflow
Solution 3 - HtmlThisismintView Answer on Stackoverflow
Solution 4 - HtmlØystein AmundsenView Answer on Stackoverflow
Solution 5 - HtmlJudy EngelsmanView Answer on Stackoverflow