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.

I have the following code:

<div style="height: 120px; background: none repeat scroll 0% 0% rgb(45, 144, 234); color: rgb(255, 255, 255); vertical-align: bottom;">
    <div style="vertical-align: bottom; height: 120px;">
        <h2 style="vertical-align: bottom; height: 120px;">text</h2>
    </div>
</div>

I can't get the text to the bottom of the nested divs. I can't use padding-top or margin-top as I occasionally have text wrapping.

Can someone advice me?

share|improve this question
vertical-align does not to apply to DIV – Kris Ivanov Feb 7 '11 at 19:55

2 Answers

up vote 0 down vote accepted
<div style="display:table-cell; vertical-align:bottom;">Personal Information</div>
share|improve this answer
If you're using CSS Style sheets, you can apply it there...see: jsfiddle.net/johnk1/yYcsU/5 – John K. Feb 7 '11 at 19:53
Note: display:table-cell; is IE8+ support quirksmode.org/css/display.html – Kris Ivanov Feb 7 '11 at 19:58
<div style="height: 120px;">
    <div style="height: 120px;">
        <h2 style="position: absolute; bottom: 0">text</h2>
    </div>
</div>

That should work.

It now doesn't matter how long the h2 text is, it stays at the bottom of yout div.

share|improve this answer
And, as K Ivanoc states correctly: dump the vertical-alignments. They don't apply on you divs. – Kriem Feb 7 '11 at 20:03

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.