Sticky footer - negative top margins on footers

<!DOCTYPE html> <html> <head> <style> html, body { height: 100%; margin: 0; } .content { min-height: 100%; } .content-inside { padding: 20px; padding-bottom: 50px; } .footer { height: 50px; margin-top: -50px; background: black; } </style> </head> <body> <div class="content"> <div class="content-inside"> content </div> </div> <footer class="footer"></footer> </body>

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.