Answers for "css footer stick to bottom bootstrap"

CSS
1

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

how to make a div stick to bottom of page bootstrap

class="fixed-bottom"
Posted by: Guest on April-11-2021

Code answers related to "css footer stick to bottom bootstrap"

Browse Popular Code Answers by Language