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?
|
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? |
||||
|
|
|
You need to use JavaScript for this. With jQuery you can do
Check working example at http://jsfiddle.net/mkCU5/2/ |
|||
|
|
|
Because when you give 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. |
|||
|
|
|
When something is absolutely positioned with CSS, it takes it out of the flow. When it's out of the flow, it won't be accounted for in height calculations. |
|||
|
|