CSSCounterStyleRule: name-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 name
-Eigenschaft des CSSCounterStyleRule
-Interfaces holt und setzt das <custom-ident>
, das als name
für die zugehörige Regel definiert ist.
Wert
Ein String
Beispiele
Das folgende Beispiel zeigt eine @counter-style
-Regel. In JavaScript ist myRules[0]
diese @counter-style
-Regel. Das Zurückgeben von name
gibt uns das benutzerdefinierte Ident "box-corner".
css
@counter-style box-corner {
system: fixed;
symbols: ◰ ◳ ◲ ◱;
suffix: ": ";
fallback: disc;
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].name); // "box-corner"
Spezifikationen
Specification |
---|
CSS Counter Styles Level 3 # dom-csscounterstylerule-name |
Browser-Kompatibilität
BCD tables only load in the browser