Answers for "how to fix footer in bottom bootstrap"

0

bootstrap footer bottom of page

<!--Use the navbar component and add .navbar-fixed-bottom class:-->

<!--Bootstrap 3.x-->
<div class="navbar navbar-fixed-bottom"></div>

<!--Bootstrap 4.x-->
<div class="navbar fixed-bottom"></div>

<!--Don't forget to add body { padding-bottom: 70px; } or otherwise the page content may be covered.-->
Posted by: Guest on May-09-2021
0

Fixed footer in Bootstrap

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

Code answers related to "how to fix footer in bottom bootstrap"

Browse Popular Code Answers by Language