Reputation: 7922
How would you get a height: 100% inside a min-height: 100% working?
Upvotes: 8
Views: 4134
Reputation: 37778
I usually use:
position: absolute;
height: 100%;
And on the outer div:
position: relative;
min-height: 100%;
Using static positioning doesn't work, because the browser needs the outer div's height to calculate the inner div's height. But it doesn't know the outer div's height until it has calculated the inner div's...
However, my solution can't be used in many situations. Maybe someone else has a better one.
Upvotes: 11