I'm trying to make this layout happen without javascript.
I have a parent div and a child div that contains content which keeps being appended. I want the child to be bottom aligned inside the parent and grow vertically. I also want the parent div to scroll when the height of the child > height of parent.

The first part is pretty easy with:
#child { position:absolute; bottom: 0 }
The second part is difficult because absolutely positioned elements are outside of the content-flow and won't trigger scrolling.
Edit
The parent div spans the entire height of the browser window (which I don't know at design-time)