Forum Moderators: not2easy
I'd like to make it so that the <DIV> would align itself with the bottom of the browser window, no matter what the size. Is it possible to do this with stylesheets?
Or there is fixed positioning, which is not going to work correctly in older browsers.
Absolute:
#bot_div{
position: absolute;
left: 0px;
bottom: 0px;
}
Fixed:
#bot_div{
position: fixed;
left: 0px;
bottom: 0px;
}
Usage:
<div id="bot_div">