Footer moving with content - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer

Description

Footer moving with content

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">
.contentwrap {<!--from w  w  w .j  a v  a 2 s. c o m-->
   background-color:Chartreuse;
   height:291px;
   min-height:213px;
}

.footerwrap {
   background-color:yellow;
   height:51px;
}
</style> 
 </head> 
 <body> 
  <div class="page"> 
   <div class="contentwrap">
     Lorem ips 
   </div> 
   <div class="footerwrap">
     Lorem ip 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials