Align div to bottom of containing div

If you wish to align a div at the very bottom of the containing div, then here is the trick.

#parentDiv
{
  position:relative;
}

#parentDiv .childDiv
{
  position:absolute;
  bottom:0;
}

So .childDiv will always be a the bottom of #parentDiv
Tags: , ,

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*