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');
});
<div></div>
div {
background: red !important;
width: 5px;
height: 5px;
}
$(function(){
$('div').css('background', 'blue !important');
});