CSSCounterStyleRule: name プロパティ
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.
name は CSSCounterStyleRule インターフェイスのプロパティで、関連付けられたルールの name として定義された <custom-ident> を取得または設定します。
値
文字列です。
例
次の例は @counter-style ルールを示しています。 JavaScript では myRules[0] がこの @counter-style ルールであり、 name を返すとカスタム識別子 "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" 仕様書
| Specification |
|---|
| CSS Counter Styles Level 3> # dom-csscounterstylerule-name> |