Interface CSSRuleList

A CSSRuleList is an (indirect-modify only) array-like object containing an ordered collection of CSSRule objects.

MDN Reference

interface CSSRuleList {
    length: number;
    item(index): CSSRule;
    [index: number]: CSSRule;
}

Indexable

[index: number]: CSSRule

Properties

Methods

Properties

length: number

Methods