I'm working with a document structure that includes an unordered list containing div elements with images inside. The images have a set height of 150px, but sometimes the images are smaller than that. Is there a way to vertically position the images within the div using CSS?
JSFIDDLE: http://jsfiddle.net/xQ7pJ/
This is a snippet of my HTML:
<ul>
<li>
<div>
<img src=""/>
</div>
</li>
</ul>
Any help would be greatly appreciated.