JSFiddle - React, Tailwind, and code Playground
by SpAm
HTML
<div>This is a random DIV</div>
<div style="position:relative;margin:20px;">
<img id="imgBackground" src="http://developer.chrome.com/extensions/examples/api/idle/idle_simple/sample-128.png" alt="Background of myBrandSite" />
<div id="divOverImage">text you want to write</div>
</div>
CSS
#imgBackground {
position:absolute;
left:0px; top:0px; width:980px; height:600px;
z-index:100;
}
#divOverImage{
position:absolute;
left:0px; top:0px; width:980px; height:600px;
z-index:200;
}