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?

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

2 Answers

up vote 0 down vote accepted
<div style="display:table-cell; vertical-align:bottom;">Personal Information</div>
link|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
feedback
<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.

link|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
feedback

Your Answer

 
or
required, but never shown

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