How to place a footer at the bottom of the page?
When using a class fixed-bottom
, the footer covers the content when scrolling page.
<div class="sticky-top">
<qipr-header></qipr-header>
<qipr-sidenav></qipr-sidenav>
</div>
<section class="container-fluid">
<div class="row">
<div class="content offset-md-3 offset-lg-2 col-md-9 col-lg-10 mb-4 mt-2">
<router-outlet></router-outlet>
</div>
</div>
</section>
<div class="fixed-bottom">
<qipr-footer></qipr-footer>
</div>