JSFiddle - React, Tailwind, and code Playground

by hellosze

HTML

<div class="image">
    <img src="http://placehold.it/198x209" />
    <h2>another image</h2>
</div>

CSS

.image {
    position: relative;
    width: 100%;    
}
h2 {
    position: absolute;
    bottom: 120px;
    left: 0px;
    width: 100%;
    background: #fff;
}