JSFiddle - React, Tailwind, and code Playground
HTML
<div class='container'></div>
JavaScript
const iframe = document.createElement('iframe');
const style = document.createElement('style');
const container = document.querySelector('.container');
container.append(iframe);
iframe.contentDocument.body.append(style);
style.innerHTML = 'body { background:blue; }';