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