JSFiddle - React, Tailwind, and code Playground

by sazakharov

HTML

<div>
TEXT
</div>

CSS

div {
  --bg-color: red;
  --height: 100px;
  --width: 100px;
  --align: left;
  background-color: var(--bg-color);
  height: var(--height);
  width: var(--width);
  text-align: var(--align);
}

JavaScript

document.querySelector("div").style="--bg-color:blue; --width:300px; --align:center"