Reputation: 3852
I've created a JSFiddle: http://jsfiddle.net/Q8uWv/
I'm trying to vertically align the image in the middle of thediv
. Using vertical-align: middle
isn't working. In additon to that I've tried margin-top:auto; margin-bottom:auto
but still no luck. How can I get this image centered vertically?
Upvotes: 0
Views: 41
Reputation: 1040
To use vertical-align:middle;
you'll need to add display:table-cell;
to the container <div>
:
Upvotes: 1
Reputation: 606
I think that this is the best article about vertical centering http://blog.themeforest.net/tutorials/vertical-centering-with-css/
Upvotes: 0