JSFiddle - React, Tailwind, and code Playground

by omarqa

HTML

<div id="Container">
    <div id="TheElement"></div>
</div>

CSS

#Container {
    width: 100%;
    height: 100px;
    background: #ccc;
    position: relative;
}
#TheElement {
    width: 100px;
    height: 1500px;
    background-color: #000000;
    position: absolute;
    top: 100px;
    left: 0;
}