:root

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

We'd love to hear more about your role and the company you work for
Please help us by answering a few questions.

Die :root CSS Pseudo-Klasse stimmt mit dem Wurzelelement eines Baums überein, der das Dokument repräsentiert. In HTML repräsentiert :root das <html>-Element und ist identisch mit dem Selektor html, außer dass seine Spezifität höher ist.

css
/* Selects the root element of the document:
   <html> in the case of HTML */
:root {
  background: yellow;
}

Syntax

css
:root {
  /* ... */
}

Beispiele

Globale CSS-Variablen deklarieren

:root kann nützlich sein, um globale CSS-Variablen zu deklarieren:

css
:root {
  --main-color: hotpink;
  --pane-padding: 5px 42px;
}

Spezifikationen

Specification
Selectors Level 4
# root-pseudo

Browser-Kompatibilität

Siehe auch