JSFiddle - React, Tailwind, and code Playground
by Daniel Tan
HTML
<div class="target">This is the target</div>
CSS
.target {
color: red;
}
JavaScript
var element = document.querySelector('.target');
element.style.color = 'blue';
element.style.color = '';