JSFiddle - React, Tailwind, and code Playground

by Esteban Herrera

HTML

<div id="myDiv">
Hello World!
</div>

JavaScript

const style = document.createElement('style');
document.head.appendChild(style);
style.sheet.insertRule('#myDiv {background-color: blue; color: yellow}');