Как прижать футер в низ страницы?
Asked
Active
Viewed 21 times
1 Answers
0
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
.content {
flex: 1 0 auto;
}
.footer {
flex-shrink: 0;
}
<body>
<div class="content">
content
</div>
<footer class="footer">footer</footer>
</body>
Zhyvko Roman
- 437