Answers for "fixed bottom footer bootstrap"

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
1

faire un footer avec bootstrap

<div class="navbar navbar-inverse navbar-fixed-bottom">
      <div class="container">
        <p class="navbar-text">© Random</p>
      </div>
    </div>
Posted by: Guest on July-02-2020

Code answers related to "fixed bottom footer bootstrap"

Browse Popular Code Answers by Language