HTMLStyleElement
The HTMLStyleElement
interface represents a <style>
element. It inherits properties and methods from its parent, HTMLElement
.
This interface doesn't allow to manipulate the CSS it contains (in most case). To manipulate CSS, see Using dynamic styling information for an overview of the objects used to manipulate specified CSS properties using the DOM.
Properties
Inherits properties from its parent, HTMLElement
.
HTMLStyleElement.media
-
Is a
DOMString
reflecting the HTML attribute representing the intended destination medium for style information. HTMLStyleElement.type
-
Is a
DOMString
reflecting the HTML attribute representing the type of style being applied by this statement. HTMLStyleElement.disabled
-
Is a boolean value reflecting the HTML attribute representing whether or not the stylesheet is disabled (true) or not (false).
HTMLStyleElement.sheet
Read only-
Returns the
CSSStyleSheet
object associated with the given element, ornull
if there is none HTMLStyleElement.scoped
-
Is a boolean value indicating if the element applies to the whole document (
false
) or only to the parent's sub-tree (true
).
Methods
No specific method; inherits properties from its parent, HTMLElement
.
Specifications
Specification |
---|
HTML Standard # htmlstyleelement |
Browser compatibility
BCD tables only load in the browser
See also
- The HTML element implementing this interface:
<style>
. - Using dynamic styling information to see how to manipulate CSS.