Three column layout where content continues on the next column - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:3 Column

Description

Three column layout where content continues on the next column

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

div {<!--from  w  w w .j  a v  a 2 s.c  om-->
   -webkit-column-count: 3; /* Chrome, Safari, Opera */
   -moz-column-count: 3; /* Firefox */
   column-count: 3;
   height: 100px;
   overflow:hidden;
}


      </style> 
 </head> 
 <body> 
  <div class="first">
    this is a test this is a test this is a test this is a test this is a test this is a test this is a test this is a test 
  </div>  
 </body>
</html>

Related Tutorials