How to Create: Fixed Footer
- Previous Page Glowing Text
- Next Page Sticky Element
Learn how to use CSS to create a fixed/sticky footer.
How to Create a Fixed Footer
<style> .footer { position: fixed; left: 0; bottom: 0; width: 100%; background-color: red; color: white; text-align: center; } </style> <div class="footer"> <p>Footer</p> </div>
Related Pages
Tutorial:CSS Positioning
- Previous Page Glowing Text
- Next Page Sticky Element