cssRules
Summary
Gets a list of CSS rules of a style sheet.
Property of css/cssom/styleSheetcss/cssom/styleSheet
Syntax
Note: This property is read-only.
var rules = stylesheet.cssRules;
Return Value
Returns an object of type DOM NodeDOM Node
Of type CSSRuleList. A list of CSS rules within a style sheet.
Notes
The list retrieved includes both rule sets (at-rules. Rules are returned in the same order as they are listed in the parent object. Rules that were dropped during parsing (for instance, because of syntax errors) are not included. However, rules that use a selector or property that Windows Internet Explorer does not recognize are included in the list.
Related specifications
- DOM Level 2 Style
- Recommendation
See also
Related articles
CSSOM
cssRules
Related pages
- styleSheetstyleSheet
- CSSMediaRuleCSSMediaRule
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]