:only-of-type

Die :only-of-type CSS-Pseudoklasse repräsentiert ein Element, das keine Geschwister des gleichen Typs hat.

Probieren Sie es aus

Syntax

css
:only-of-type {
  /* ... */
}

Beispiele

Stile für Elemente ohne Geschwister des gleichen Typs

HTML

html
<main>
  <div>I am `div` #1.</div>
  <p>I am the only `p` among my siblings.</p>
  <div>I am `div` #2.</div>
  <div>
    I am `div` #3.
    <i>I am the only `i` child.</i>
    <em>I am `em` #1.</em>
    <em>I am `em` #2.</em>
  </div>
</main>

CSS

css
main :only-of-type {
  color: red;
}

Ergebnis

Spezifikationen

Specification
Selectors Level 4
# only-of-type-pseudo

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch