JSFiddle - React, Tailwind, and code Playground
by cmruser
JavaScript
(function() {
var node = document.createElement('style');
document.head.appendChild(node);
window.addStyleString = function(str) {
node.innerHTML = str;
}
}());
addStyleString('body { color: red }');
addStyleString('body { background: silver }');