I am currently creating a unique photo gallery that showcases images uploaded by users. These images are resized to fit the gallery but can vary in dimensions from 100x100 to 2500x2500.
The Photo Gallery View page I have designed is Fluid, meaning the width of the page adjusts and is not fixed.
On the Photo Gallery page, I showcase the original image without any resizing (although I do resize for thumbnails and other purposes)...
My goal is to display the image at its maximum possible dimension to make use of all available space on the page.
Currently, my CSS includes: max-width: 600px; min-height: 100px; min-width: 100px;
However, there is an issue because if I remove the max-width property, the image overflows beyond the boundaries of the page.
Does anyone have any suggestions or solutions?
Thank you