StylePropertyMap: clear() method

The clear() method of the StylePropertyMap interface removes all declarations in the StylePropertyMap.

Syntax

js
clear()

Parameters

None.

Return value

None (undefined).

Examples

undefined

Basic usage

The following example removes all styles within the elements style attribute.

js
// get the button element
const buttonEl = document.querySelector(".example");

// remove all styles from the style attribute
buttonEl.attributeStyleMap.clear();

Specifications