JSFiddle - React, Tailwind, and code Playground
by pphheerroonn
HTML
<div class="box-set">
<div class="box1">Box 1</div>
<div class="box2">Box 2</div>
<div class="box3">Box 3</div>
</div>
CSS
.box1 {
position: relative;
width: 200px;
height: 200px;
background: #ee3e64;
}
.box2 {
position: relative;
left: 200px;
width: 200px;
height: 200px;
background: #44accf;
}
.box3 {
position: relative;
width: 200px;
height: 200px;
background: #b7d84b;
}