I am currently trying to do something like this:
The issue is that these are absolute positioned images so that they can overlap. I want to center these overlapping images in a Bootstrap column, like this:
<div class="row">
<div class="col-lg-8 col-md-12 col-sm-12 col-xs-12 text-center">
<div id="imgdiv">
<img id="ximage" src="css/images/x-ray-lat-left.png" width="578" height="715" border="0"/>
<img id="emptygif" src="http://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif" width="578" height="715" usemap="#location-map" border="0"/>
<img id="overlayr1"> </img>
<img id="overlayr2"> </img>
<img id="overlayr3"> </img>
<map name="location-map" id="location-map" border="0">
<area id="r1" shape="rect" coords="250,250,340,370" href="#" alt="Hilum"/>
<area id="r2" shape="rect" coords="90,150,340,500" href="#" alt="Heart"/>
<area id="r3" shape="rect" coords="130,120,460,530" href="#" alt="Righ Lung"/>
</map>
</div>
</div>
</div>
but absolute positioning really messes things up in terms responsiveness. If I take out absolute positioning then my image gets messed up.
Any idea what I could do?