JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box" id="box1"></div>
<div class="box" id="box2"></div>
<div class="line" id="line1"></div>
CSS
.box{
border: 1px solid black;
background-color: #ccc;
width: 100px;
height: 100px;
position: absolute;
}
#box1{
top: 0;
left: 0;
}
#box2{
top: 200px;
left: 0;
}
.line{
width: 1px;
height: 100px;
background-color: black;
position: absolute;
}
#line1{
top: 100px;
left: 50px;
}