Here is my HTML:
<section style="-webkit-column-count:3">
<div class="item">
<h2></h2>
<p>…</p>
<p> Read More — <a href="link.htm"></a></p>
<hr>
</div>
<div class="item">
..
</div>
.
.
.
</section>
At the bottom of the page, the div with item class splits in two to maintain equal height of columns. How can I keep individual div together at the bottom? Let me know If I am not explaining the question clearly.
Here is a jsFiddle: http://jsfiddle.net/j35toyju/
You will see that the items are not in a complete block. Sometimes, the heading is at bottom and rest of the div at top. Other times everything is at bottom and just link is at top.
This question provide an answer but it only works in Google Chrome. Is there any way to make it work in all browsers. With use of JavaScript if not possible in pure CSS?