JSFiddle - React, Tailwind, and code Playground

HTML

<div id="parent">
    <div id="Map">
        <img id="X0001Y0001" src="http://lorempixel.com/output/cats-q-c-75-75-1.jpg">
    </div>
</div>

CSS

#parent {
    position: relative;
    margin: 0 auto;
    width: 256px;
}
#Map {
    background-image:url(http://lorempixel.com/output/technics-q-c-256-128-2.jpg);
    height:128px;
    width:256px;
    position:absolute;
}

#X0001Y0001{
    position:inherit;
    top:0px;
    left:9px;
}