CSSKeywordValue: value property

Limited availability

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

Want more browser support for this feature? Tell us why.

Note: This feature is available in Web Workers.

The value property of the CSSKeywordValue interface represents the keyword as a string.

Value

A string.

Exceptions

TypeError

Thrown if the value property is set to an empty String.

Examples

Basic usage

The following example resets the CSS display property to its defaults.

js
let indicator = document.getElementById("indicator");
indicator.attributeStyleMap.set("display", new CSSKeywordValue("initial"));
indicator.attributeStyleMap.get("display").value; // 'initial'

Specifications

Specification
CSS Typed OM Level 1
# dom-csskeywordvalue-value

Browser compatibility