Jason S.
Jason S.

Reputation: 520

inline-block vertical alignment

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

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324610

Use line-height: 135px; on the containers, and vertical-align: middle on the images themselves.

Upvotes: 3

Related Questions