I'm pulling images that are of the same width, but not the same height. I'm trying to display them in rows with no added vertical space.
For example, if row 1 has images that are 100px 150px and 70px high respectively, I'd want the images on the second row to appear directly underneath each image at the respective height.
Right now, I have float set to left which works for the horizontal display. Adding a clear: left gives the desired effect but places everything in a single column. How do I get images wrapping to the left, but appearing vertically immediately below?
As things are, any images underneath the first 3 would all display at the same line height of the one beneath the 150px image with a large vertical space underneath the 100px and 70px images.