A single style sheet. CSS style sheets will further implement the more specialized CSSStyleSheet interface.

MDN Reference

interface StyleSheet {
    disabled: boolean;
    href: null | string;
    ownerNode: null | Element | ProcessingInstruction;
    parentStyleSheet: null | CSSStyleSheet;
    title: null | string;
    type: string;
    media: MediaList;
}

Hierarchy (view full)

Properties

disabled: boolean
href: null | string
ownerNode: null | Element | ProcessingInstruction
parentStyleSheet: null | CSSStyleSheet
title: null | string
type: string

Accessors

  • get media(): MediaList
  • Returns MediaList

  • set media(mediaText): void
  • Parameters

    • mediaText: string

    Returns void