JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <div></div>
</div>

CSS

div {
    background:url(http://lorempixel.com/200/200);
    width:200px;
    height:200px;
    position: relative;
}
div div {
    background:url(http://lorempixel.com/100/100);
    width:100px;
    height:100px;
    top:50px;
    left:50px;
    position: absolute;
}