I've been attempting to align an image, which is typically shorter in height than the paragraph next to it, in the middle vertically but just can't seem to figure it out.
<div class="element">
<img src="http://dummyimage.com/75" />
<p class="text" >Blah Blah<br/>Blah Blah<br/>Blah Blah<br/>Blah Blah<br/>Blah Blah<br/>Blah Blah<br/>Blah Blah<br/>Blah Blah<br/>
</p>
Here is the CSS I have so far
.element{display:table;height:100%}
.text{display:table-cell;background:#CC0;padding:20px;}
.element img{display:table-cell;margin-right:10px;vertical-align:middle;}
And you can view a jsfiddle example http://jsfiddle.net/0krndsav/
Most of the other inquiries I've found involve aligning the paragraph in the middle of an image...
Any suggestions?