I'm trying to replicate the sticky-footer effect that can be seen on the website
- From what I understand, the footer needs to be fixed in place.
- The content should have a higher
z-index
. - It seems like the body may need a
margin-bottom
equal to the height of the footer.
If anyone could provide some guidance, I would greatly appreciate it.
My framework is Twitter Bootstrap 4. Here's a basic structure of the markup:
<body>
<div class="container"> <!-- Content area that scrolls up to reveal the footer -->
<!-- Place your content here -->
</div>
<footer class="footer"> <!-- Initially hidden footer -->
<div class="container">
<div class="row">
<!-- Footer content goes here -->
</div>
</div>
</footer>
</body>