A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/API/CSSPropertyRule below:

CSSPropertyRule - Web APIs | MDN

CSSPropertyRule

Baseline 2024

Newly available

The CSSPropertyRule interface of the CSS Properties and Values API represents a single CSS @property rule.

CSSRule CSSPropertyRule Instance properties

Inherits properties from its ancestor CSSRule.

CSSPropertyRule.inherits Read only

Returns the inherit flag of the custom property.

CSSPropertyRule.initialValue Read only

Returns the initial value of the custom property.

CSSPropertyRule.name Read only

Returns the name of the custom property.

CSSPropertyRule.syntax Read only

Returns the literal syntax of the custom property.

Instance methods

No specific methods; inherits methods from its ancestor CSSRule.

Examples

This stylesheet contains a single @property rule. The first CSSRule returned will be a CSSPropertyRule with the properties and values as defined by the rule in CSS.

@property --property-name {
  syntax: "<color>";
  inherits: false;
  initial-value: #c0ffee;
}
const myRules = document.styleSheets[0].cssRules;
console.log(myRules[0]); // A CSSPropertyRule
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