I have a square div of fixed size and wish to place an arbitrary size image inside so that it is centred both horizontally and vertically, using CSS. Horizontally is easy:
.container { text-align: center }
For the vertical, the common solution is:
.container {
height: 50px;
line-height: 50px;
}
img {
vertical-align: middle;
}
But this is not perfect, depending on the font size, the image will be around 2-4px too far down.
To my understanding, this is because the "middle" used for vertical-align is not really the middle, but a particular position on the font that is close to the middle. A (slightly hacky) workaround would be:
container {
font-size: 0;
}
and this works in Chrome and IE7, but not IE8. We are hoping to make all font lines the same point, in the middle, but it seems to be hit-and-miss depending on the browser and, probably, the font used.
The only solution I can think of is to hack the line-height, making it slightly shorter, to make the image appear in the right location, but it seems extremely fragile. Is there a better solution?
See a demo of all three solutions here: http://jsfiddle.net/usvrj/3/
Those without IE8 may find this screenshot useful:

display: table-cell;to the container? It is my understanding that the vertical-align property can have two different meanings, one for table cell content, and one for inline elements. – MrSlayer May 8 '12 at 14:23display: table-celllooks to be the same, example 4 at jsfiddle.net/usvrj/6 – Steve May 8 '12 at 15:14