Answers for "bootstrap fixed footer without scroll"

CSS
0

Fixed footer in Bootstrap

footer {
    position: fixed;
    height: 100px;
    bottom: 0;
    width: 100%;
}
Posted by: Guest on July-28-2021
0

sticky footer not working bootstrap

/* 2020 - bootstrap 4.5+ 
Note: - The flex-fill utility was included in Bootstrap 4.1 at later release. 
So after that release the extra CSS for flex-fill won't be needed. 
Additionally min-vh-100 is included in newer Bootstrap 4 releases */
<div class="d-flex flex-column min-vh-100">
    <nav>
    </nav>
    <main class="flex-fill">
    </main>
    <footer>
    </footer>
</div>
Posted by: Guest on December-23-2020

Code answers related to "bootstrap fixed footer without scroll"

Browse Popular Code Answers by Language