This page is Almost Ready

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

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

Related pages

Attributions