JSFiddle - React, Tailwind, and code Playground

by csornmo

HTML

<div class="hej">
hej
</div>

<div class="hej">
hejsan
</div>

CSS

.content {
    padding: 20px;
    background: #000;
}

.hej {
    color: #ccc;
    border: 2px solid #fff;
}

JavaScript

$('.hej:first-child').prepend('<div class="content">');

$('.hej').contents().appendTo('.content');