How to Create: Fixed Footer
- Önceki sayfa Parlak metin
- Sonraki sayfa Yapışkan elementler
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>
İlgili sayfalar
Tutorial:CSS konumlandırma
- Önceki sayfa Parlak metin
- Sonraki sayfa Yapışkan elementler