Bootstrap 4 now uses flexbox by default, so itโs easier to get a sticky (non-fixed) footer without additional CSS for flexbox. You just need to make sure the body has min-height ...
body { min-height: 100vh; }
Then use the flexbox utility classes ...
<body class="d-flex flex-column"> <nav></nav> <main class="flex-grow"></main> </footer></footer> </body>
Bootstrap 4 flexbox Sticky footer
source share