I have a CSS problem:
I have an absolute positioned div in a container. The container won\'t resize to the height of the content. Why?
Because when you give absolute position to something, you take it out of the layout flow. This means that its dimensions are no longer used to calculate its parent's height, among everything else.
If your element has a known fixed height, then you can give an appropriate height to its parent element as well. Otherwise you should look for another way to achieve your goal.