JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

.test {
  background:red;
  top: 0px;
}

JavaScript

var test = document.getElementById('coucou');
test.style.background = '#00ff00';
test.style.top = '100px'