JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<p id="test">Hello
<b>how</b>
<i><small>are</small> you?</i>
</p>
</div>
CSS
*{color: red}
#test{color: green}
#test{color: blue !important}
JavaScript
$('*').attr('style',
($('*').attr('style') || '') + ";color:black !important");