JSFiddle - React, Tailwind, and code Playground
by Matt_Coughlin
HTML
<body>
<div id="container1">
<img src="http://cdn4.spiegel.de/images/image-491267-thumb-wjvo.jpg" width="180" height="180" />
<div id="container2">
<div class="info">Text</div>
</div>
</div>
</body>
CSS
html, body {
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
}
#container1 {
background: aqua;
position: absolute;
top: 30px;
left: 30px;
bottom: 30px;
right: 30px;
}
#container1 img {
height: 100%;
width: auto;
}
#container2 {
background: red;
position: relative;
height: 100%;
width: 10px;
display: inline-block;
}
#container2 .info {
background: black;
position: absolute;
top: 0;
left: 0;
height: 30px;
color: white;
}