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
Readonly
href
href: null | string
Readonly
owner Node
Readonly
parent Style Sheet
Readonly
title
title: null | string
Readonly
type
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