CSS3 Multicolumn text


/ Published in: CSS
Save to your folder(s)

The W3C multi-column module is a CSS level-three working draft, proposed by the W3C to extend the current CSS box model. The module’s intent is to allow content to flow into multiple columns inside an element. It offers new CSS properties that let the designers specify in how many columns an element should be rendered. The browser takes care of formatting the text so that the columns are balanced.

The proposed new CSS properties are:

* ‘column-count’, to determine the number of columns into which the content of the element will flow.
* ‘column-width’, to describe the optimal width of each column.
* ‘column-gap’, to set the padding between columns.
* ‘column-rule’, to define a border between columns.


Copy this code and paste it in your HTML
  1. .article {
  2. column-count: 2;
  3. column-gap: 20px;
  4. }

URL: http://www.alistapart.com/articles/css3multicolumn

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.