JSFiddle - React, Tailwind, and code Playground
HTML
<div class="test">
123
</div>
CSS
.test {
color: green;
}
JavaScript
$(function(){
$('body').append('<style>.test {color: red;}</style>');
});
<div class="test">
123
</div>
.test {
color: green;
}
$(function(){
$('body').append('<style>.test {color: red;}</style>');
});