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

What is the best way to vertically center the content of a div when the height of the content is variable. In my particular case, the height of the container div is fixed, but it would be great if there were a solution that would work in cases where the container has a variable height as well. Also, I would love a solution with no, or very little use of CSS hacks and/or non-semantic markup.

alt text

share|improve this question
the method in that article falls apart in Safari (4.0.5) :S – user349440 May 24 '10 at 23:38
Duplicated: stackoverflow.com/questions/396145/… – ripper234 Jan 3 '12 at 9:02

2 Answers

up vote 12 down vote accepted

Ah... Many times I have wanted to do this and I always wind up back on this article. If there is a better method I haven't found it yet. It does require you add a little non-semantic markup, but there are many cases when an extra div or className is required to get a specific styling effect and the only other method you can use is a table. When we get browser support for css 3 you'll get your vertical centering without extra markup.

Note: There are simple ways to get vertical centering if you know some heights in advance, if you are trying to center a single line of text, or in several other cases. If you have more details then throw them in because there may be a method that doesn't require browser hacks or non-semantic markup.

share|improve this answer
Yeah, I found that article today and haven't been able to make it work for my particular situation. Perhaps I need to look into that further. – jessegavin Sep 12 '08 at 15:39
Perhaps you can post the code you are using that doesn't work? – Chris Marasti-Georg Sep 12 '08 at 15:40
2  
Nope, I am wrong. That method totally works! – jessegavin Sep 12 '08 at 16:02
   
Is this still the best solution for this problem? – ripper234 Jan 3 '12 at 8:59
That article doesn't seem to work on Chrome 23, Firefox 16 and IE 9. This answer seems to be a better solution. – Fernando Correia Nov 18 '12 at 21:24
show 1 more comment

This seems to be the best solution I've found to this problem, as long as your browser supports the :before psuedo element: http://css-tricks.com/centering-in-the-unknown/

It doesn't required any extra markup and seems to work extremely well. I couldn't use the display:table method because table elements don't obey the max-height attributes.

share|improve this answer
Now -that- is a -BRILLIANT- solution. Thanks so much for posting this! – Troy Alford Oct 25 '12 at 19:42

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.