Baseline 2024
Newly available
The read-only name
property of the CSSPropertyRule
interface represents the property name, this being the serialization of the name given to the custom property in the @property
rule's prelude.
A string.
ExamplesThis stylesheet contains a single @property
rule. The first CSSRule
returned will be a CSSPropertyRule
representing this rule. The name
property returns the string "--property-name"
, which is the name given to the custom property in CSS.
@property --property-name {
syntax: "<color>";
inherits: false;
initial-value: #c0ffee;
}
const myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].name); // "--property-name"
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4