vote up 6 vote down star
1

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

flag

1 Answer

vote up 6 vote down check

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.

link|flag
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
Nope, I am wrong. That method totally works! – jessegavin Sep 12 '08 at 16:02

Your Answer

Get an OpenID
or

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