I'm trying to create rows of images, with 3 images in each row. All this data is dynamic, but below is some example HTML and CSS:
ul { margin: 0; padding: 0; list-style: none; width: 900px; }
li { margin: 0; padding: 0; width: 280px; display: inline-block;
text-align: center; }
<ul>
<li><img src="http://i.imgur.com/FcRwL.png" /></li>
<li><img src="http://i.imgur.com/VLwWb.png" /></li>
<li><img src="http://i.imgur.com/euevl.png" /></li>
<li><img src="http://i.imgur.com/VLwWb.png" /></li>
<li><img src="http://i.imgur.com/euevl.png" /></li>
<li><img src="http://i.imgur.com/FcRwL.png" /></li>
</ul>
Here it is in jsFiddle: http://jsfiddle.net/ZxPG3/
So my problem is that all the images appear to be vertically-aligned at the bottom. This happens because the height of the li is equal to the image contained inside - it doesn't equal the height of the ul. I can't set the height of the li to a specific value, since I never know what the height of the images will be.
Is there a way to set the li to equal the height of the ul, and then vertically center the image inside?