Verticle Algin ??

liunx

Guest
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
<!-- m --><a class="postlink" href="Adamhttp://bonrouge.com/br.php?page=faq#valignI">Adamhttp://bonrouge.com/br.php?page=faq#valignI</a><!-- m --> 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>
 
Back
Top