I\'m trying to use this sticky footer:
http://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
body{ display: flex; min-height: 100vh;
Bootstrap 4 now uses flexbox by default so it's easier to get a sticky (not fixed) footer w/o additional CSS for the flexbox. You just need to ensure the body has min-height...
min-height
body { min-height: 100vh; }
Then use the flexbox utility classes...
Bootstrap 4 Flexbox Sticky Footer