JSFiddle - React, Tailwind, and code Playground
by meetravi
HTML
<div id="parent">
<div id="sibling1">
Div 1
</div>
<div id="sibling2">
Div 2
</div>
</div>
CSS
#parent{
width:800px;
height:800px;
background-color:#ccc;
border:1px solid red;
}
#sibling1{
width:200px;
height:200px;
background-color:yellow;
border:1px solid red;
position:absolute;
top:0px;
left:5px;
}
#sibling2{
width:200px;
height:200px;
background-color:orange;
border:1px solid red;
position: relative;
top:100px;
}