CSSNestedDeclarations: style property
The read-only style
property of the CSSNestedDeclarations
interface represents the styles associated with the nested rules.
Value
An object.
Examples
This stylesheet contains a nested cssRules
.
The first console.log
shows the top-level style
, the second shows the nested @media
query with its nested style and the final shows the nested style declared after the @media
query.
css
.foo {
font-size: 1.2rem;
@media (screen) {
color: tomato;
background-color: darkgrey;
}
color: black;
}
js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].style);
// { "0": "font-size" }
console.log(myRules[0].cssRules[0].cssRules[0].style);
// { "0": "color", "1": "background-color" }
console.log(myRules[0].cssRules[1].style);
// { "0": "color" }
Specifications
Specification |
---|
CSS Nesting Module # dom-cssnesteddeclarations-style |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
style |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.