I have a collection of images all the same size, and I want them to be overlaid on top of each other. I've tried setting the position of the images to absolute, but this causes an issue with the container not adjusting its size accordingly.
Additionally, I need the images to be resizable based on the browser size.
Does anyone have a solution for inserting multiple overlayed images?
<html>
<head></head>
<body>
<div id="container">
<img src="image1" />
<img src="image2" />
<img src="image3" />
</div>
</body>
</html>
The container div needs to adjust its size to fit all 3 images, which are all the same size and should be overlaid on top of each other.