StylePropertyMap.delete()

Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。

delete()StylePropertyMap インターフェイスのメソッドで、指定されたプロパティの CSS 宣言を削除します。

構文

js
delete(property)

引数

property

削除するスタイル特性(フォント、幅、背景色など)を示す識別子です。

返値

なし (undefined)。

以下の例では、要素の style 属性から background-image プロパティを削除します。

js
// button 要素を取得
const buttonEl = document.querySelector("button");

// スタイル属性から background-image を削除
buttonEl.attributeStyleMap.delete("background-image");

仕様書

Specification
CSS Typed OM Level 1
# dom-stylepropertymap-delete

ブラウザーの互換性

BCD tables only load in the browser