JSFiddle - React, Tailwind, and code Playground

by fersterin

HTML

<div id="first">first</div>
<div id="second">second</div>
<pre>
#first{
  height: 200px;
  background: #69c;
  margin: 0 0 -100px;
}
#second{
  height: 200px;
  background: #f60;
  margin: -50px 100px 0; 
}
</pre>

CSS

#first{
height: 200px;
background: #69c;
margin: 0 0 -100px;
}
#second{
height: 200px;
background: #f60;
margin: -50px 100px 0; 
}