Reputation: 520
I know there are a number of ways to do this, but really looking for a good explanation of why vertical alignment does not work in this case:
http://jsfiddle.net/jasonsnyc/zAg8g/1/
What I am after is centering the images vertically without using floats, tables, or display:table-cell.
Upvotes: 2
Views: 405
Reputation: 324610
Use line-height: 135px;
on the containers, and vertical-align: middle
on the images themselves.
Upvotes: 3