say I have something like
<body><div id="a"><div id="b">some content</div></div>more content<body>
and I don't know how much height "some content" is going to be. But I have #b styled to position: absolute and #a styled to position: relative so #b's position is relative the the top left corner of #a. Is there some way I can make #a expand to contain #b some that "more content" gets pushed after?
thanks