CSS3 Column

Not very reliable. Might have to reisze output window to see all the columns

by prasun_sultania

HTML

<h1>Socrates</h1>
<div class="col">
<p>After philosophizing for a while socrates decided to let him beinng killed. He wanted to give ana example and prooce himslef by giving up his life. Generate more conent for the 3 rd column. who the fuck does that. Is it something funny. Still stuck with 2 columns, I wanted to have a third column as well. It is not damn generaating itFeatures include:
Optimize Your Manufacturing and Supply Chain – New Manufacturing Routing and Scheduling enables you to optimize assignments and increase machine and labor productivity while Demand Planning enhancements help you better manage inventory levels. Learn more...
Market More Effectively – Improved Duplicate Merge and new Duplicate Detection help you keep your marketing database clean, improve campaign effectiveness, and save time. Learn more...
Drive Customer-Centric Commerce – The new SuiteCommerce Advanced Storefront enables you to create a pixel-perfect site with an engaging shopper experience that will drive sales. Features include new reference site and My Account, Faceted Navigation, Mini Cart, Quick View, and Search-As-You-Type with lightning fast results. Learn more...</p>
</div>

CSS

.col {
-moz-column-count: 3;
-moz-column-width: 14em;
-moz-column-gap: 2em;
-moz-column-rule: 1px solid #ccc;
-webkit-column-count: 3;
-webkit-column-width: 14em;
-webkit-column-gap: 2em;
-webkit-column-rule: 1px solid #ccc;
column-count: 3;
column-width: 14em;
column-gap: 2em;
column-rule: 1px solid #ccc;
}