I have a collection of clipped images, each with an absolute position:
<img style='position:absolute;clip(xpx xpx xpx xpx);'/>
<img style='position:absolute;clip(xpx xpx xpx xpx);'/>
<img style='position:absolute;clip(xpx xpx xpx xpx);'/>
<img style='position:absolute;clip(xpx xpx xpx xpx);'/>
<img style='position:absolute;clip(xpx xpx xpx xpx);'/>
The issue I'm facing is that all the images are overlapping, and I want them to be positioned next to each other.
I've used absolute positioning due to the clipping effect on the images;
Can anyone suggest a solution?