|
Post by Elli on Aug 16, 2019 12:38:51 GMT -7
Sticky Footer Pushes the footer to the bottom of the page, regardless of page height. Uses the Flexbox Mixins. CSShtml { height: 100%; }
body { .flex-display(); .flex-direction(column); min-height: 100%; }
#wrapper { margin-bottom: auto; } Example Forum Wrapper Structure<!DOCTYPE html> <html lang="en-us"> <head> ... </head> <body>
<div id="wrapper"> ... </div> <footer class="c-footer" role="contentinfo"> <!-- ProBoards creates this automatically --> ... </footer>
</body> </html>
|
|