I am completely stuck on this problem. CSS and DIVs are new to me, so I appreciate your patience.
My goal is to create a DIV-based image gallery with the following layout:
<div id="container">
<div class="row">
<div class="img-container">
img
</div>
...more img-containers
</div>
...more rows
</div>
I am facing challenges because the thumbnails in the gallery vary in size (but all less than 150x150px). This makes traditional vertical-align solutions ineffective, especially considering that the row divs and container are statically positioned.
I have spent hours searching through various resources without finding a solution that works for my specific case. Any assistance would be greatly appreciated!
For reference, the website I am working on can be found here.
Thank you for any help you can provide!