Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So, let's say I have a container, that might or might not contain any further elements and has dynamic content, i.e. text generated from database, so we don't know for sure how wide/high can it be.

How would one be able to center both horizontally AND vertically such dynamic elements?

share|improve this question
You don't know width/height of inner div, means outer div has no width/height fixed. Then you can use padding with outer container element. – Dev Oct 2 '12 at 15:09
2  
What have you tried? – Dutchie432 Oct 2 '12 at 15:10
Finally, I figured it out with the transform property. For popups/floating anything: jsfiddle.net/SydXr For inline, horizontal centering I know of only one: display: table; margin: 0 auto; – user1263513 Oct 3 '12 at 17:26

2 Answers

The best way I can think of involves JavaScript to dinamically calculate the height on load, on resize or even on Ajax events. Take a look at the source of this ALA example.

share|improve this answer

There is a hack, yes. Set your container to display: table;, and on the text, for instance in a p, set that to display: table-cell; vertical-align: middle;. This will vertically align it.

You can combine this with text-align and padding to center horizontally.

http://jsfiddle.net/E9QF3/

share|improve this answer
Is there no way to center the container as well? I remember once I found a trick from my smartphone that uses transform: translate(x,y), but unfortunately I can't find it again with Google. – user1263513 Oct 2 '12 at 16:54
I've updated the answer with a possible way to do it – Leonard Challis Oct 2 '12 at 19:46

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.