:nth-last-of-type()

Die :nth-last-of-type() CSS Pseudo-Klasse selektiert Elemente basierend auf ihrer Position unter den Geschwistern desselben Typs (Tag-Name), gezählt vom Ende her.

Probieren Sie es aus

Syntax

Die nth-last-of-type Pseudo-Klasse wird mit einem einzigen Argument spezifiziert, das das Muster zur Übereinstimmung von Elementen vom Ende her darstellt.

Sehen Sie sich :nth-last-child für eine detailliertere Erklärung seiner Syntax an.

css
:nth-last-of-type(<An+B> | even | odd) {
  /* ... */
}

Beispiele

HTML

html
<div>
  <span>This is a span.</span>
  <span>This is another span.</span>
  <em>This is emphasized.</em>
  <span>Wow, this span gets limed!!!</span>
  <del>This is struck through.</del>
  <span>Here is one last span.</span>
</div>

CSS

css
span:nth-last-of-type(2) {
  background-color: lime;
}

Ergebnis

Spezifikationen

Specification
Selectors Level 4
# nth-last-of-type-pseudo

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch