I have a question that might sound familiar! I want my footer to sit at the bottom of the page, but not remain fixed in place when I scroll. I'm aiming for a footer similar to what you see at the bottom of this webpage Footer Example. Here's the code snippet I've been working with so far using Bootstrap 4, but I haven't found a suitable class to achieve the desired effect.
<footer>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-twitch"></i></a>
</footer>
Although I'm familiar with the bootstrap class
.fixed-bottom
, I specifically don't want the footer to remain fixed as I scroll.