Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

These CSS properties center the image of any size within a container of any size:

display:table-cell;
text-align:center;
vertical-align:middle;

This is a perfect fluid image centering, however, table-cell property gives me unwanted white space on the bottom. How to avoid it? See this:

http://jsfiddle.net/8DeLQ/1/

share|improve this question

1 Answer

up vote 1 down vote accepted

If the container contains no text content, you could possibly add font-size: 0; to the container's style. I think the unwanted whitespace is related to text content.

share|improve this answer
As @MrSlayer says add font-size: 0; and this will fix your problem; – trickeedickee May 7 '12 at 18:05
this is an excellent solution, thank you – Vad May 7 '12 at 18:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.