Within a div element, I have an image:
<div class="full-width">
<img src="images/products/product1.jpg" />
</div>
I am looking to introduce another image called frame.png, but not as a background image!
<img src="images/products/frame.png" />
My goal is to overlap the image product1.jpg with frame.png, creating the appearance that frame.png is on top of product1.jpg.
Is it possible to achieve this using z-index, without using it as a background image due to working with a responsive design?
In the end, I want to achieve something like:
<div class="full-width">
<img src="images/products/product1.jpg" />
<img src="images/products/frame.png" />
</div>
How can this be accomplished?