Search


Search something to see results

StyleSheet

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

MDN Reference

interface StyleSheet {
    disabled: boolean;
    href: null | string;
    get media(): MediaList;
    set media(mediaText: string): void;
    ownerNode: null | Element | ProcessingInstruction;
    parentStyleSheet: null | CSSStyleSheet;
    title: null | string;
    type: string;
}

Hierarchy (View Summary)

Index

Properties

Accessors

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: string): void

    Parameters

    • mediaText: string

    Returns void