Divide a page in 8 perfect fluid columns - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Column Layout

Description

Divide a page in 8 perfect fluid columns

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

.navigation {<!--from w  ww .ja  v a 2s  . com-->
   display: table;
   table-layout: fixed;
   width: 100%;
}
.navigation > a {
   display: table-cell;
   border: 1px solid #444;
}


      </style> 
 </head> 
 <body> 
  <footer> 
   <div class="footer-jigsaw"></div> 
   <div class="footer-wrapper"> 
    <nav class="navigation"> 
     <a href="">1</a> 
     <a href="">2</a> 
     <a href="">3</a> 
     <a href="">4</a> 
     <a href="">5</a> 
     <a href="">6</a> 
    </nav> 
   </div> 
  </footer>  
 </body>
</html>

Related Tutorials