JSFiddle - React, Tailwind, and code Playground
HTML
<div id="box"></div>
CSS
#box {
width: 100px;
height: 100px;
background-color: blue;
}
JavaScript
var box = document.getElementById('box');
box.style.backgroundColor = 'red';
<div id="box"></div>
#box {
width: 100px;
height: 100px;
background-color: blue;
}
var box = document.getElementById('box');
box.style.backgroundColor = 'red';