The HTMLStyleElement
interface represents a <style>
element. It inherits properties and methods from its parent, HTMLElement
, and from LinkStyle
.
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.
Inherits properties from its parent, HTMLElement
, and implements LinkStyle
.
HTMLStyleElement.media
DOMString
representing the intended destination medium for style information.HTMLStyleElement.type
DOMString
representing the type of style being applied by this statement.HTMLStyleElement.disabled
Boolean
value representing whether or not the stylesheet is disabled (true) or not (false).LinkStyle.sheet
Read only
StyleSheet
object associated with the given element, or null
if there is noneHTMLStyleElement.scoped
Boolean
value indicating if the element applies to the whole document (false
) or only to the parent's sub-tree (true
).No specific method; inherits properties from its parent, HTMLElement
, and LinkStyle
.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'HTMLStyleElement' in that specification. | Living Standard | No change from HTML5. |
HTML 5.1 The definition of 'HTMLStyleElement' in that specification. | Recommendation | |
HTML5 The definition of 'HTMLStyleElement' in that specification. | Recommendation | The following property has been added: scoped . |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'HTMLStyleElement' in that specification. | Obsolete | Added a second inheritence, the LinkStyle interface. |
Document Object Model (DOM) Level 1 Specification The definition of 'HTMLStyleElement' in that specification. | Obsolete | Initial definition |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
scoped | No support | No support | 21.0 (21.0) | No support | No support | No support |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
scoped | ? | No support | 21.0 (21.0) | No support | No support | No support |
<style>
.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement