JSFiddle - React, Tailwind, and code Playground
by Carine Callo
HTML
<div id="box1">
<img src="http://i44.tinypic.com/2j4akqb.jpg"/>
<div id="box2">box</div>
</div>
CSS
#box1{
position:relative;
display:inline-block;
height: 200px;
}
img {
height: 100%;
}
#box2{
width:50px;
background-color: yellow;
position: absolute;
bottom:0;left:0; right:0;
margin:auto;
}