Liquid layout with footer and content splitted in two - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer

Description

Liquid layout with footer and content splitted in two

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">
.all {<!--from w ww  .  j a  v  a2 s  .  c  om-->
   position:relative;
   hieght:1001px;
   width:100%;
}

.content {
   display:inline-block;
   height:701px;
   width:100%;
}

.left {
   display:inline-block;
   float:left;
   width:61%;
   height:100%;
   background-color:Chartreuse;
}

.right {
   display:inline-block;
   float:left;
   width:41%;
   height:100%;
   background-color:yellow;
}

.footer {
   display:inline-block;
   width:100%;
   height:181px;
   background-color:blue;
}
</style> 
 </head> 
 <body> 
  <div class="all"> 
   <div class="content"> 
    <div class="left"></div> 
    <div class="right"></div> 
   </div> 
   <div class="footer"></div> 
  </div>  
 </body>
</html>

Related Tutorials