Simple Sticky Footer In Bootstrap

Posted By Weston Ganger

Creating a sticky footer can be a real pain. Heres a simple way to do so in bootstrap.

HTML:

html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  /* Set the fixed height of the footer here */
  height: 60px;
  width: 100%;
  background-color: #CCC;

Related External Links:

Article Topic:Software Development - HTML / CSS

Date:September 29, 2016