JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent">
<div class="bottom">
</div>
</div>
CSS
.parent
{
position: relative;
display: block;
width: 300px;
height: 200px;
background-color: #25f;
}
.bottom
{
position: absolute;
width: 50px;
height: 10px;
left: 50%;
margin-left: -25px;
bottom: 0;
background-color: #4ff;
}