StyleSheet
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;
}
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)
- StyleSheet
Index
Properties
Accessors
Properties
disabled
disabled: boolean
Readonlyhref
href: null | string
Readonlyowner Node
Readonlyparent Style Sheet
Readonlytitle
title: null | string
Readonlytype
type: string
Accessors
media
Returns MediaList
- set media(mediaText: string): void
Parameters
mediaText: string
Returns void
A single style sheet. CSS style sheets will further implement the more specialized CSSStyleSheet interface.
MDN Reference