JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test">test</div>

CSS

#test{
    background-color: #f00;
}

JavaScript

//document.getElementById('test').style.backgroundColor='#ff0';
alert(document.getElementById('test').style.backgroundColor)