JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
CSS
div {
position: relative;
width: 100px;
height: 100px;
border-radius: 100px;
background: grey;
display: inline-block;
margin: 0 10px;
}
div:nth-child(3) {
top: 50px;
background: red;
position: absolute;
z-index: 1;
}