JSFiddle - React, Tailwind, and code Playground
by pleinx
HTML
<div class="body">
FakeBody
</div>
CSS
.body {
background: red;
}
JavaScript
const div = document.createElement('div');
const img = document.createElement('img');
img.src = 'https://i.ytimg.com/vi/eosSVTARmE4/maxresdefault.jpg';
div.appendChild(img);
div.querySelector('img').style.transform = "scale(2)";
document.querySelector('.body').appendChild(div);