The CSSStyleRule interface represents a single CSS style rule.
The CSSStyleRule interface represents a single CSS style rule.
Inherits properties from its ancestor CSSRule.
CSSStyleRule.selectorTextReturns the textual representation of the selector for this rule, e.g. "h1,h2".
CSSStyleRule.style Read only
Returns the CSSStyleDeclaration object for the rule.
CSSStyleRule.styleMap Read only
Returns a StylePropertyMap object which provides access to the rule's property-value pairs.
No specific methods; inherits methods from its ancestor CSSRule.
The CSS includes one style rule. This will be the first CSSRule returned by document.styleSheets[0].cssRules. myRules[0] therefore returns a CSSStyleRule object representing the rule defined for h1.
css
h1 { color: pink; }
js
let myRules = document.styleSheets[0].cssRules; console.log(myRules[0]); // a CSSStyleRule representing the h1.
| Specification |
|---|
| CSS Object Model (CSSOM) # the-cssstylerule-interface |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
CSSStyleRule |
1 | 12 | 1 | 9 | ≤12.1 | 1 | 4.4 | 18 | 4 | ≤12.1 | 1 | 1.0 |
cssRules |
112 | 112 | 117 | No | 98 | 16.5 | 112 | 112 | 117 | No | 16.5 | No |
deleteRule |
112 | 112 | 117 | No | 98 | 16.5 | 112 | 112 | 117 | No | 16.5 | No |
insertRule |
112 | 112 | 117 | No | 98 | 16.5 | 112 | 112 | 117 | No | 16.5 | No |
selectorText |
1 | 12 | 1 | 9 | ≤12.1 | 1 | 4.4 | 18 | 4 | ≤12.1 | 1 | 1.0 |
style |
1 | 12 | 1 | 9 | ≤12.1 | 1 | 4.4 | 18 | 4 | ≤12.1 | 1 | 1.0 |
styleMap |
66 | 79 | No | No | 53 | 16.4 | 66 | 66 | No | 47 | 16.4 | 9.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleRule