web api instance method
CSSGroupingRule: insertRule() method
The insertRule() method of the
CSSGroupingRule interface adds a new CSS rule to a list of CSS rules.
Syntax
insertRule(rule)
insertRule(rule, index)
Parameters
rule- : A string
indexOptional- : An optional index at which to insert the rule; defaults to 0.
Return value
The index of the new rule.
Exceptions
IndexSizeErrorDOMException- : Thrown if index is greater than the number of child CSS rules.
HierarchyRequestErrorDOMException- : Thrown if
rulecannot be inserted at the specified index due to some CSS constraint.
- : Thrown if
HierarchyRequestErrorDOMException- : Thrown if the
ruleis a valid statement but not a nested statement.
- : Thrown if the
Examples
let myRules = document.styleSheets[0].cssRules;
myRules[0].insertRule(
"html {background-color: blue;}",
0,
); /* inserts a rule for the HTML element at position 0 */
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.