JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
    background: red !important;
    width: 5px;
    height: 5px;
}

JavaScript

$(function(){
   $('div').css('background', 'blue !important'); 
});