CSSUnparsedValue: CSSUnparsedValue() constructor

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

The CSSUnparsedValue() constructor creates a new CSSUnparsedValue object which represents property values that reference custom properties.

Syntax

js
new CSSUnparsedValue(members)

Parameters

members

An array whose values must be either a string or a CSSVariableReferenceValue.

Examples

js
const value = new CSSUnparsedValue(["4deg"]);
const values = new CSSUnparsedValue(["1em", "#445566", "-45px"]);

console.log(value); // CSSUnparsedValue {0: "4deg", length: 1}
console.log(values); // CSSUnparsedValue {0: "1em", 1: "#445566", 2: "-45px", length: 3}

Specifications

Specification
CSS Typed OM Level 1
# dom-cssunparsedvalue-cssunparsedvalue

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
CSSUnparsedValue() constructor

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
No support
No support
See implementation notes.

See also