JSFiddle - React, Tailwind, and code Playground
by puneetsiet
HTML
<!--http://alistapart.com/article/css-positioning-101-->
<div id="box_1">
<div id="box_2"></div></div>
<div id="box_3"></div>
CSS
#box_1 {
position: relative;
width: 200px;
height: 200px;
background: #ee3e64;
}
#box_2 {
position: relative;
left:200px;
width: 200px;
height: 200px;
background: #44accf;
}
#box_3 {
position: relative;
width: 200px;
height: 200px;
background: #b7d84b;
}