CSSCounterStyleRule: system-Eigenschaft
Baseline 2023
Newly available
Since September 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Die system
-Eigenschaft der CSSCounterStyleRule
-Schnittstelle ruft den Wert des system
-Descriptors ab und setzt ihn. Wenn der Descriptor keinen festgelegten Wert hat, gibt dieses Attribut einen leeren String zurück.
Wert
Ein String
Beispiele
Das folgende Beispiel zeigt eine @counter-style
-Regel. In JavaScript ist myRules[0]
diese @counter-style
-Regel; die Rückgabe von system
gibt uns den Wert "fixed".
css
@counter-style box-corner {
system: fixed;
symbols: ◰ ◳ ◲ ◱;
suffix: ": ";
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].system); // "fixed"
Spezifikationen
Specification |
---|
CSS Counter Styles Level 3 # dom-csscounterstylerule-system |
Browser-Kompatibilität
BCD tables only load in the browser