I'm wondering how I can keep a div
at the bottom of a page. The problem I'm having is that the page height will change when clicking on expandable elements. How can I keep a div at the very bottom of the page with changing height?
I've tried the following without any luck:
Thanks!
I've tried making a div
100% height and then putting the bottom div
like so, but that makes the bottom div
stay in the exact same position
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px;
}
.bottom {
position:relative;
bottom:0;
}