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.

insertRule

Summary

Inserts a new rule to a media block.

Method of css/cssom/CSSMediaRule/CSSMediaRulecss/cssom/CSSMediaRule/CSSMediaRule

Syntax

var ruleIndex = mediaRule.insertRule(/* see parameter list */);

Parameters

ruleText

Data-type
String

The parsable text that represents the rule. For rule sets, this contains both the selector and the style declaration. For at-rules, this specifies both the at-identifier and the rule content.

index

Data-type
Number

The index within the media block’s rule collection. The rule is inserted immediately before this index. If the specified index is equal to the length of the media block’s rule collection, the rule is added to the end of the media block.

Return Value

Returns an object of type NumberNumber

The index of the newly inserted rule within the media block’s rule collection.

Standards information

Related specifications

DOM Level 2 Style
Recommendation

See also

Related articles

CSSOM

Related pages

Attributions