how to make a div stick to bottom of page code example
Example 1: how to make element stick to bottom
.fotter{
position: fixed;
bottom: 0px;
}
Example 2: css div at bottom of div
<style>
.outside {
position: relative;
width: 200px;
height: 200px;
background-color: #EEE;
}
.inside {
position: absolute;
bottom: 2px;
}
</style>
<div class="outside">
<div class="inside">inside</div>
</div>
Example 3: how to make a div stick to bottom of page
<style>
#footer{
position:fixed;
bottom:0px;
}
</style>
<div id="footer">Footer</div>