CSSSupportsRule
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.
Instanz-Eigenschaften
Erbt Eigenschaften von seinen Vorfahren CSSConditionRule
, CSSGroupingRule
und CSSRule
.
Instanz-Methoden
Erbt Methoden von seinen Vorfahren CSSConditionRule
, CSSGroupingRule
und CSSRule
.
Beispiele
Das CSS enthält eine CSS-Funktionsabfrage mithilfe der @supports
-At-Regel, die eine Stilregel umfasst. Dies wird die erste CSSRule sein, die von document.styleSheets[0].cssRules
zurückgegeben wird. myRules[0]
gibt daher ein CSSSupportsRule
-Objekt zurück.
css
@supports (display: grid) {
body {
color: blue;
}
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0]); // a CSSSupportsRule representing the feature query.
Spezifikationen
Specification |
---|
CSS Conditional Rules Module Level 3 # the-csssupportsrule-interface |
Browser-Kompatibilität
BCD tables only load in the browser