Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#all { /* all content must be wrap in <div id="all"></div> */
position: relative;
height: 100%;
min-height: 100%;
}
html>body #all {
height: auto;
}
#footer {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
#footer, #empty {
height: 50px;
}
<body>
<div id="all">
<div class="content">
Some content
</div>
<div id="empty"></div>
<div id="footer">
This is content of footer path
</div>
</div>
</body>
DIV-ная верстка, footer прижат