JSFiddle - React, Tailwind, and code Playground

by Casiano Rodriguez-Leon

HTML

<div id="box"></div>

CSS

#box {
  width: 100px;
  height: 100px;
  background-color: blue;  
}

JavaScript

var box = document.getElementById('box');
  box.style.backgroundColor = 'red';