Answers for "footer fixed bottom bootstrap 5"

CSS
0

sticky footer bootstrap 3

<style>
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: red;
   color: white;
   text-align: center;
}
</style>
Posted by: Guest on May-31-2020
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 "footer fixed bottom bootstrap 5"

Browse Popular Code Answers by Language