HTML CSS examples for CSS Widget:Footer aligned bottom
stick the footer to bottom
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .footer {<!--from w w w . ja v a 2s .c om--> background:red; height:100px; position:fixed; bottom:0; width:100%; } </style> </head> <body> <div class="footer"> Lorem ips </div> </body> </html>