JSFiddle - React, Tailwind, and code Playground
by noisy
HTML
<div id="container">
<div id="navi">a</div>
<div id="infoi"><img src="http://lorempixel.com/320/200/" height="200" width="320"/>b</div>
</div>
CSS
#container {
width: 500px;
height: 200px;
position: relative;
}
#navi,
#infoi {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
#infoi {
//z-index: 10;
}