JSFiddle - React, Tailwind, and code Playground
by Minko Gechev
HTML
<div id="bar">
<span>How cool is that?!</span>
<div id="foo"></div>
</div>
JavaScript
var t = document.getElementById('foo').webkitCreateShadowRoot();
var p = document.createElement('span');
var s = document.createElement('style');
s.innerHTML = 'span { color: red; }';
t.appendChild(s);
t.appendChild(p);
p.innerHTML = 'hah';