Dynamic Responsive Pinterest Style Columns Layout with Pure CSS
 
When Im searching for casarole  layout I found the following which is really helped me.   I further improved and shared herewith.   http://www.cssscript.com/dynamic-responsive-pinterest-style-columns-layout-with-pure-css/      HTML   <!DOCTYPE html>  <html lang="en">  <head>   <meta charset="UTF-8">   <title>jquery实现瀑布流效果</title>   <link rel="stylesheet" type="text/css" href="../css/style.css" />   <script src="../js/jquery.js"></script>   <script src="../js/waterfalls.js"></script>  </head>  <body>   <section id="title">    <h2>jquery瀑布流效果特效代码</h2>   </section>   <div id="warp">    <div class="box">     <div class="pic">      <img src="../images/img_1.jpg" />     </div>    </div>    <div class="box">     <div cla...