CSS3 multi-column layouts

by Mohammed Ismail Ansari

HTML

<div class="news">
This is Commander Shepard speaking. We have our orders: find Saren before he finds the conduit. Fifty thousand years ago, the reapers wiped out all galactic civilization. If Saren finds the conduit, it will happen again. I won't lie to you crew, this mission won't be easy...
</div>

CSS

.news
{
-webkit-column-count: 2;
-webkit-column-gap: 50px;
-webkit-column-rule: 2px solid Red;
}

JavaScript

// CSS3 multi-column layouts