You need to add this:
#parentDiv {
position: relative;
}
#parentDiv .childDiv {
position: absolute;
bottom: 0;
left: 0;
}
When declaring absolute element, it is positioned according to its nearest parent that is not static (it must be absolute, relative or fixed).