stick the footer to bottom - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer aligned bottom

Description

stick the footer to bottom

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

Related Tutorials