Reputation: 6236
How can i put a div in the bottom of the screen not the page ?
But i don't want to use position:fixed
because i want once i scroll down , the div go up like other elements.
like the div in this web site
Upvotes: 1
Views: 70
Reputation: 74
Try adding this css to your id or class:
div {
position: absolute;
bottom: 0;
}
Upvotes: 1