Простой способ прижать <footer>
к низу окна при малой высоте контента. HTML-верстка следующая:
<!DOCTYPE html>
<html>
<head>
<title>Site</title>
</head>
<body>
<div class="wrapper">
<div class="content">
<p>Content...</p>
</div>
</div>
<footer class="footer">
<p>Footer</p>
</footer>
</body>
</html>
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
}
.content {
padding: 0 0 100px;
}
.footer {
margin: -100px 0 0 0;
height: 100px;
background: #ffcbcb;
position: relative;
}