CSSMediaRule: media-Eigenschaft

Baseline Widely available

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

Die schreibgeschützte media-Eigenschaft der CSSMediaRule-Schnittstelle gibt eine MediaList zurück, die das vorgesehene Zielmedium für Stilinformationen darstellt.

Wert

Beispiele

Das CSS enthält eine Media Query mit einer Stilregel. Dies wird die erste CSSRule sein, die von document.styleSheets[0].cssRules zurückgegeben wird. Ein Aufruf von myRules[0].media gibt daher ein MediaList-Objekt zurück, das die Media Query darstellt.

css
@media (min-width: 500px) {
  body {
    color: blue;
  }
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].media); // a MediaList

Spezifikationen

Specification
CSS Conditional Rules Module Level 3
# dom-cssmediarule-media

Browser-Kompatibilität

BCD tables only load in the browser