JSFiddle - React, Tailwind, and code Playground
by ryanwfiorini
HTML
<div id="top">top</div>
<div id="bottom">bottom</div>
CSS
#top {
border: 1px solid black;
height: 20px;
width: 100px;
display:block;
background-color: red;
}
#bottom{
border: 1px solid black;
height: 20px;
width: 100px;
display:block;
background-color: green;
position: relative;
top: 200px;
}