Attempting to achieve something similar:
Check out this Overlaying Image Example
The challenge lies in the fact that these are absolutely positioned images, allowing them to overlap. I aim to center these overlapping images within a Bootstrap column as shown below:
<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="Right Lung"/>
</map>
</div>
</div>
</div>
However, absolute positioning poses challenges when it comes to responsiveness. Removing absolute positioning causes image distortion.
Any suggestions on a possible solution?