Click to See Complete Forum and Search --> : Verticle Algin ??


k0r54
07-04-2005, 09:31 AM
Hi,

With this code, i cannot seem to get the inside div, to the bottom of the out div.

I want it to rest at the bottom of it instead of the top?

Any ideas on how to do that : -


<div style="height:150px; border:1px solid #000; vertical-align:bottom">
<div style="border:1px solid #000; vertical-align:bottom ">
<p>Hello</p>
</div>
</div>


Thanks
Adam

BonRouge
07-04-2005, 09:36 AM
http://bonrouge.com/br.php?page=faq#valign

Alinu
07-04-2005, 07:59 PM
I hope this will help you:

<div style="height:150px; border:1px solid #000; position: relative">
<div style="border:1px solid #000; position:absolute; bottom:0px; width:100%">
<p>Hello</p>
</div>
</div>