JSFiddle - React, Tailwind, and code Playground
by drewP
HTML
<div class="container">
<img src="http://upload.wikimedia.org/wikipedia/commons/4/4e/Pleiades_large.jpg" alt="One Helluva Big Image" />
<div class="overlay">
<p>
That's One HELLUVA big IMAGE
</p>
</div>
</div>
CSS
img {
height: 70%;
width: 70%
}
.container {
position: relative;
}
.overlay {
position: absolute;
color: white;
background: rgba(186,186,186,.5);
width: 100px;
height: 100px;
padding: 10px;
top: 0;
z-index: 2;
}