Reputation: 2364
I'm trying to expand the body's height to be beyond 100% of the page.
If i set
body, html { height: 100%;
background-color: darkbrown; }
.container { height: 100%; }
then if the content inside container goes beyond 100% it overflows and the color isnt saved. The problem here is that unless I remove the height or change it to min-height it will continue this behavior. What can I do to change this? Keep in mind that setting height % is necessary to create sticky footer.
Here's a fiddle with a better expample:
ive tried setting overflow to auto but with no avail.
Upvotes: 0
Views: 75