I have an outer div
position: relative;
overflow: hidden;
min-heigth: 450px;
containing a div
position: absolute;
top: 10px;
right: 10px;
The inner div is bigger than the min-heigth of the outer div and I see that the outer div is not scaling to the content of the inner div. Capping off the bottom content of the inner div.
How can I define the outer (or inner) div to scale vertically to the content (of the inner div)
Thanks
div. Could you make a jsFiddle test case of your HTML/CSS?min-heigth: 450px;should bemin-height: 450px;. That could cause other issues. If it's not a direct cut-n-paste then disregard :)