CSSStyleSheet()
-
Creates a new
CSSStyleSheet
object.
CSSStyleSheet()
Creates a new CSSStyleSheet
object.
Inherits properties from its parent, StyleSheet
.
CSSStyleSheet.cssRules
Read onlyReturns a live CSSRule
objects that comprise the stylesheet.
Note:
In some browsers, if a stylesheet is loaded from a different domain, accessing cssRules
results in a SecurityError
.
CSSStyleSheet.ownerRule
Read onlyIf this stylesheet is imported into the document using an CSSImportRule
; otherwise, this property's value is null
.
Inherits methods from its parent, StyleSheet
.
CSSStyleSheet.deleteRule()
Deletes the rule at the specified index into the stylesheet's rule list.
CSSStyleSheet.insertRule()
Inserts a new rule at the specified position in the stylesheet, given the textual representation of the rule.
CSSStyleSheet.replace()
Asynchronously replaces the content of the stylesheet and returns a Promise
that resolves with the updated CSSStyleSheet
.
CSSStyleSheet.replaceSync()
Synchronously replaces the content of the stylesheet.
These properties are legacy properties as introduced by Microsoft; these are maintained for compatibility with existing sites.
rules
Read only
Deprecated
The rules
property is functionally identical to the standard CSSRuleList
which maintains an up-to-date list of all of the rules in the style sheet.
These methods are legacy methods as introduced by Microsoft; these are maintained for compatibility with existing sites.
addRule()
Deprecated
Adds a new rule to the stylesheet given the selector to which the style applies and the style block to apply to the matching elements.
This differs from insertRule()
, which takes the textual representation of the entire rule as a single string.
removeRule()
Deprecated
Functionally identical to deleteRule()
; removes the rule at the specified index from the stylesheet's rule list.
A stylesheet is associated with at most one Document.styleSheets
property. A specific style sheet can also be accessed from its owner object (Node
or CSSImportRule
), if any.
A CSSStyleSheet
object is created and inserted into the document's Document.styleSheets
list automatically by the browser, when a stylesheet is loaded for a document.
A (possibly incomplete) list of ways a stylesheet can be associated with a document follows:
Reason for the style sheet to be associated with the document |
Appears in document. list
|
Getting the owner element/rule given the style sheet object | The interface for the owner object | Getting the CSSStyleSheet object from the owner |
---|---|---|---|---|
<link>
elements in the document
|
Yes | .ownerNode |
HTMLStyleElement ,or SVGStyleElement
|
HTMLStyleElement.sheet ,or SVGStyleElement.sheet
|
CSS @import rule in other style sheets applied to
the document
|
Yes |
.ownerRule
|
CSSImportRule |
.styleSheet
|
<?xml-stylesheet ?> processing instruction in the
(non-HTML) document
|
Yes | .ownerNode |
ProcessingInstruction |
.sheet
|
JavaScript import ... with { type: "css" }
|
No | N/A | N/A | N/A |
HTTP Link Header | Yes | N/A | N/A | N/A |
User agent (default) style sheets | No | N/A | N/A | N/A |
Specification |
---|
CSS Object Model (CSSOM) # the-cssstylesheet-interface |
BCD tables only load in the browser