Task - make the footer stick to the bottom of page. Google: "bottom of page css", "bottom of window css".
Result -
<div class="wrapper"> <p>Content</p> <div class="push"></div> </div> <div class="footer"> <p>Footer</p> </div> <div class="hooter"> <p>Hooter</p> </div>
*{
margin:0;
}
body,
html{
height:100%;
}
.wrapper{
min-height:100%;
_he\ight:auto !important;
_he\ight:100%;
margin:0 auto -120px auto;
}
.push{
clear:both;
height:120px;
}
.footer,
.hooter{
height:60px;
}
Footer sticks to the bottom of the page.