Firefox Tomorrow

web api instance method

CSSStyleSheet: deleteRule() method

View on MDN ↗

The CSSStyleSheet method deleteRule() removes a rule from the stylesheet object.

Syntax

deleteRule(index)

Parameters

  • index
    • : The index into the stylesheet’s CSSRuleList indicating the rule to be removed.

Return value

None (undefined).

Examples

This example removes the first rule from the stylesheet myStyles.

myStyles.deleteRule(0);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also