0

Как прижать футер в низ страницы?

Ozis
  • 1

1 Answers1

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>