Blog Details

post-5
26 Apr/24

Sticky Footer

A sticky footer that remains at the bottom using a variable height is best in responsive web design.

CSS

<style>
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
</style>

HTML

<html>
<body>
  <div class="content">
    content
  </div>
  <footer class="footer"></footer>
</body>
</html>
April 26, 2024
Javascript Downloader
April 26, 2024
Customize Scroll Bar
Cart (0 items)