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