JSFiddle - React, Tailwind, and code Playground

by doug65536

HTML

<div style="height: 150px">&nbsp;</div>
<div class="foo-bar">Content</div>
<div class="foo-bar">Content</div>
<div class="foo-bar">Content</div>

CSS

.foo-bar {
    margin-top: -20px;
    height: 32px;
    background-color: lightblue;
    border: solid black 1px;
}

JavaScript

$('.foo-bar').first().prepend('<div class="foo-bar">Content</div>');