vot.js - v2.4.18
    Preparing search index...

    Interface CSSRuleList

    A CSSRuleList represents an ordered collection of read-only CSSRule objects.

    MDN Reference

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

    Indexable

    Index
    length: number

    The length property of the CSSRuleList interface returns the number of CSSRule objects in the list.

    MDN Reference

    • The item() method of the CSSRuleList interface returns the CSSRule object at the specified index or null if the specified index doesn't exist.

      MDN Reference

      Parameters

      • index: number

      Returns CSSRule | null