Name
CSSStyleRule — a style rule in a CSS style sheet
Availability
DOM Level 2 CSS
Inherits from/Overrides
CSSRule → CSSStyleRule
Properties
-
String selectorText The selector text that specifies the document elements this style rule applies to. Setting this property raises a DOMException with a
codeofNO_MODIFICATION_ALLOWED_ERRif the rule is read-only, or acodeofSYNTAX_ERRif the new value does not follow CSS syntax rules.-
readonlyCSSStyleDeclarationstyle The style values that should be applied to elements specified by
selectorText.
Description
This interface represents a style rule in a CSS style sheet. Style
rules are the most common and important kinds of rules in style
sheets: they specify style information that is to be applied to a
specific set of document elements. selectorText is
the string representation of the element selector for this rule, and
style is a CSSStyleDeclaration object that
represents the set of style names and values to apply to the selected
elements.