1<!--Use the navbar component and add .navbar-fixed-bottom class:-->
2
3<!--Bootstrap 3.x-->
4<div class="navbar navbar-fixed-bottom"></div>
5
6<!--Bootstrap 4.x-->
7<div class="navbar fixed-bottom"></div>
8
9<!--Don't forget to add body { padding-bottom: 70px; } or otherwise the page content may be covered.-->
1<style>
2.footer {
3 position: fixed;
4 left: 0;
5 bottom: 0;
6 width: 100%;
7 background-color: red;
8 color: white;
9 text-align: center;
10}
11</style>