Sticky footer - flexbox

<!DOCTYPE html> <html> <head> <style> html { height: 100%; margin: 0; } body { margin: 0; min-height: 100%; display: flex; flex-direction: column; } .content { flex: 1; } footer{ background: black; height: 50px; } </style> </head> <body> <div class="content"> content </div> <footer class="footer"></footer> </body> </html>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.