HTML & CSS Wiki

READ MORE

HTML & CSS Wiki
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 -moz-column-count Mozilla extension property can be used to set the ideal number of columns into which the content of the element will be flowed. Safari supports the -webkit-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;
  -moz-column-count:3;
}