https://i.sstatic.net/T7P4V.jpg
I am looking for a solution to create clickable links on a picture that contains multiple items (3 in my specific case, as shown in the image above). Currently, I am using position:absolute to place links on each item, but this method is causing overlap issues. I want to avoid using image mapping.
<div class="col-md-12">
<a href="google.com" style="position: absolute;width: 149px;height: 240px;margin-left: 26%;"></a>
<a href="yahoo.com" style="margin-left: 35%;position: absolute;width: 167px;height: 240px;"></a>
<a href="index.com" style="margin-left: 45%;position: absolute;width: 151px;height: 240px;"></a>
<img src="imagelink" alt="" class="col-md-12">
</div>