JSFiddle - React, Tailwind, and code Playground

by Luca De Nardi

HTML

<div>
<p id="test">Hello
<b>how</b>
<i><small style="color: yellow !important;">are</small> you?</i>
</p>
</div>

CSS

*{color: red}
#test{color: green}
#test{color: blue !important}

JavaScript

$('*').attr('style', 
($('*').attr('style') || '') + ";color:black !important");