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