HTML
xxxxxxxxxx
1
<div class="container my-4" style="height: 3000px;">
2
<p>
3
<strong>To make a footer fixed to the bottom of the page use <code>.fixed-bottom</code> class. See the example
4
below.</strong>
5
</p>
6
7
<p>
8
Detailed documentation and more examples you can find in our
9
<a href="https://mdbootstrap.com/docs/standard/navigation/footer/" target="_blank"><strong>Footer
10
Docs</strong> </a>
11
</p>
12
13
<hr class="mt-5">
14
15
<p>Built with <a target="_blank" href="https://mdbootstrap.com/docs/standard/">Material Design for Bootstrap</a> - free and powerful Bootstrap UI KIT</p>
16
17
<a class="btn btn-primary me-2" href="https://mdbootstrap.com/docs/standard/getting-started/installation/" target="_blank" role="button">Download MDB UI KIT<i class="fas fa-download ms-2"></i></a>
18
<a class="btn btn-danger me-2" target="_blank" href="https://mdbootstrap.com/docs/standard/" role="button">Learn more</a>
19
<a class="btn btn-success me-2" target="_blank" href="https://mdbootstrap.com/docs/standard/getting-started/" role="button">Tutorials</a>
20
<a class="btn btn-dark me-2" target="_blank" href="https://github.com/mdbootstrap/mdb-ui-kit" role="button">GitHub<i class="fab fa-github ms-2"></i></a>
21
22
23
<hr class="mb-5"/>
24
25
<p><strong>Basic example</strong></p>
26
27
<p>Scroll down the page to see the footer is always fixed to the bottom of the page.</p>
28
29
<p>More footer examples you can find in <a target="_blank"
30
href="https://mdbootstrap.com/docs/standard/navigation/footer/">Footer Docs</a></p>
31
32
<!-- Copy this code to have a working example -->
33
<footer class="bg-primary text-white text-center text-lg-start fixed-bottom">
34
<!-- Grid container -->
35
<div class="container p-4">
36
<!--Grid row-->
37
<div class="row">
38
<!--Grid column-->
39
<div class="col-lg-6 col-md-12 mb-4 mb-md-0">
40
<h5 class="text-uppercase">Footer Content</h5>
41
42
<p>
43
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Iste atque ea quis
44
molestias. Fugiat pariatur maxime quis culpa corporis vitae repudiandae aliquam
45
voluptatem veniam, est atque cumque eum delectus sint!
46
</p>
47
</div>
48
<!--Grid column-->
49
50
<!--Grid column-->
51
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
52
<h5 class="text-uppercase">Links</h5>
53
54
<ul class="list-unstyled mb-0">
55
<li>
56
<a href="#!" class="text-white">Link 1</a>
57
</li>
58
<li>
59
<a href="#!" class="text-white">Link 2</a>
60
</li>
61
<li>
62
<a href="#!" class="text-white">Link 3</a>
63
</li>
64
<li>
65
<a href="#!" class="text-white">Link 4</a>
66
</li>
67
</ul>
68
</div>
69
<!--Grid column-->
70
71
<!--Grid column-->
72
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
73
<h5 class="text-uppercase mb-0">Links</h5>
74
75
<ul class="list-unstyled">
76
<li>
77
<a href="#!" class="text-white">Link 1</a>
78
</li>
79
<li>
80
<a href="#!" class="text-white">Link 2</a>
81
</li>
82
<li>
83
<a href="#!" class="text-white">Link 3</a>
84
</li>
85
<li>
86
<a href="#!" class="text-white">Link 4</a>
87
</li>
88
</ul>
89
</div>
90
<!--Grid column-->
91
</div>
92
<!--Grid row-->
93
</div>
94
<!-- Grid container -->
95
96
<!-- Copyright -->
97
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
98
© 2020 Copyright:
99
<a class="text-white" href="https://mdbootstrap.com/">MDBootstrap.com</a>
100
</div>
101
<!-- Copyright -->
102
</footer>
103
<!--/ Copy this code to have a working example -->
104
105
</div>
CSS
1
1
JS
1
1
Console errors: 0