[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ja/docs/Web/API/CSSStyleRule/styleMap [Back]  [Original]

CSSStyleRule.styleMap - Web API | MDN

MDN Web Docs

View in English Always switch to English

CSSStyleRule.styleMap

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

styleMap CSSStyleRule StylePropertyMap

StylePropertyMap

styleMap StylePropertyMap.set()

js
const stylesheet = document.styleSheets[0];

Object.values(stylesheet.cssRules).forEach((block) => {
  if (block.selectorText === "button") {
    block.styleMap.set("--mainColor", "black");
  }
});

CSS Typed OM Level 1
# dom-cssstylerule-stylemap


Web Proxy Viewer  |  New URL  |  Original Page