HTML CSS examples for CSS Widget:Footer aligned bottom
Push FOOTER to the bottom of page
<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 va2 s. co m--> background:Chartreuse; position:absolute; bottom:0px; display:flex; height:41px; width:100%; } </style> </head> <body> <footer></footer> </body> </html>