CSSStyleRule.selectorText
Summary
The CSSRule.selectorText
property gets the textual representation of the selector for the rule set. This is implemented in a readonly manner; to set stylesheet rules dynamically, see Using dynamic styling information.
Syntax
JavaScript
Copy Code
string = cssRule.selectorText
Example
JavaScript
Copy Code
// for cssrule: body { background-color: darkblue; } var stylesheet = document.styleSheets[0]; alert(stylesheet.cssRules[0].selectorText); // body
Notes
The implementation may have stripped out insignificant whitespace while parsing the selector.
Specification
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/cssstylerule/selectortext