como fazer o elemento aderir ao fundo
.fotter{
position: fixed;
bottom: 0px;
}
Asif Patel
.fotter{
position: fixed;
bottom: 0px;
}
/* Position inside div at the bottom of containing (outside) div */
<style>
.outside {
position: relative;
width: 200px;
height: 200px;
background-color: #EEE; /*to make it visible*/
}
.inside {
position: absolute;
bottom: 2px;
}
</style>
<div class="outside">
<div class="inside">inside</div>
</div>
<div id="bottom" style="position:fixed; bottom:0;"></div>
<style>
#footer{
position:fixed;
bottom:0px;
}
</style>
<div id="footer">Footer</div>