The CSSStyleSheet method deleteRule() removes a rule from the stylesheet object.
deleteRule(index)indexThe index into the stylesheet's CSSRuleList indicating the rule to be removed.
None (undefined).
This example removes the first rule from the stylesheet myStyles.
myStyles.deleteRule(0);