Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The CSSUnparsedValue()
constructor
creates a new CSSUnparsedValue
object which represents property values
that reference custom properties.
Syntax
var CSSUnparsedValue = new CSSUnparsedValue(members)
Parameters
- members
- An array whose values must be either a
USVString
or aCSSVariableReferenceValue
.
Examples
let value = new CSSUnparsedValue( ['4deg'] ),
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 | Status | Comment |
---|---|---|
CSS Typed OM Level 1 The definition of 'CSSUnparsedValue' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser