Firefox Tomorrow

web api instance property

CSSKeywordValue: value property

View on MDN ↗

The value property of the CSSKeywordValue interface returns or sets the value of the CSSKeywordValue.

Value

A string.

Exceptions

  • TypeError
    • : Thrown if the value property is an empty String when being set.

Examples

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

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

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.