Push FOOTER to the bottom of page - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer aligned bottom

Description

Push FOOTER to the bottom of page

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials