How to make a CSS Sticky Footer on your website?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
* {
  margin: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

.content-wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -40px;
}

.footer, {
  height: 40px;

}