JSFiddle - React, Tailwind, and code Playground
by mathijsflietstra
HTML
<div>
<div>2 by 3</div>
<img src="https://dl.dropboxusercontent.com/u/6928212/twobythree.png" />
</div>
CSS
body > div {
height: 300px;
position: relative;
display: inline-block;
}
img {
display: block;
height: 100%;
}
div > div {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
/* The lines below are for demonstration purposes only */
background-color: #EFEFEF;
border: 1px dashed lightblue;
}
/* The lines below are for demonstration purposes only */
body {
font-family: verdana;
font-size: 10pt;
line-height: 50px;
text-align: center;
}