1
2<body>
3 <section>
4 This is content of the page
5 </section>
6 <footer>
7 Text of footer
8 </footer>
9</body>
10
11section {
12 min-height: 100vh; /* minus the height of the footer */
13}
1html,
2body {
3 height: 100%;
4 position: relative;
5}
6.site-content {
7 min-height: 100vh; /* will cover the 100% of viewport */
8 overflow: hidden;
9 display: block;
10 position: relative;
11 padding-bottom: 100px; /* height of your footer */
12}
13footer {
14 position: absolute;
15 bottom: 0;
16 width: 100%;
17}