HTML & CSS Wiki
Advertisement
Stub

This article is a stub. Please help the wiki by coding it. Spamming and vandalism is not considered an improvement and will result in discipline, up to, and including a permanent block.


The CSS -webkit-column-count Apple extension property can be used to set the ideal number of columns into which the content of the element will be flowed. Firefox supports the -moz-column-count property.

Values[]

Value Description
<number> Describes the ideal number of columns into which the content of the element will be flowed.


CSS example:

.content-box {
  border:10px solid #000000;
  -webkit-column-count:3;
}
Advertisement