JSFiddle - React, Tailwind, and code Playground
by bgmort
HTML
<div id="green" style="background: green; height: 100px; width: 100px;">green</div>
<div id="red" style="background: red; height: 100px; width: 100px;">red</div>
<script>
document.getElementById('green').style.background = '';
setTimeout(function(){
document.getElementById('red').style.background = '';
},1)
</script>