JSFiddle - React, Tailwind, and code Playground
by dodozhang21
HTML
<div id="box_1" class="box">
<div id="box_2" class="box"></div>
</div>
<div id="box_3" class="box"></div>
CSS
#box_1 {
position: relative;
width: 100px;
height: 100px;
background-color: red;
}
#box_2 {
position: relative;
left: 100px;
width: 100px;
height: 100px;
background-color: blue;
}
#box_3 {
position: relative;
width: 100px;
height: 100px;
background-color: green;
}