JSFiddle - React, Tailwind, and code Playground

by camnpr

HTML

<div>demo</div>

JavaScript

var css = document.createElement('style');
css.type = 'text/css';
css.innerHTML = 'background-color:pink';
document.getElementsByTagName('head')[0].appendChild(css);
console.log(css);