CSSStyleSheet: replaceSync() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2023.
ThereplaceSync() method of theCSSStyleSheet interface synchronously replaces the content of the stylesheet with the content passed into it.
ThereplaceSync() andCSSStyleSheet.replace() methods can only be used on a stylesheet created with theCSSStyleSheet() constructor.
In this article
Syntax
replaceSync(text)Parameters
textA string containing the style rules to replace the content of the stylesheet. If the string does not contain a parsable list of rules, then the value will be set to an empty string.
Note:If any of the rules passed in
textare an external stylesheet imported with the@importrule, those rules will be removed, and a warning printed to the console.
Return value
None (undefined).
Exceptions
NotAllowedErrorDOMExceptionThrown if the stylesheet was not created using the
CSSStyleSheet()constructor or if the stylesheet is flagged as unmodifiable.
Examples
In the following example a new stylesheet is created and two CSS rules are added usingreplaceSync.
const stylesheet = new CSSStyleSheet();stylesheet.replaceSync("body { font-size: 1.4em; } p { color: red; }");Specifications
| Specification |
|---|
| CSS Object Model (CSSOM)> # dom-cssstylesheet-replacesync> |