You are here : cssCSS 3column-count

column-count - CSS 3

The column-count property specifies the number of columns an element should 
be divided into.


Syntax

column-count: number|auto|initial|inherit;


Example

div
	{   
	-webkit-column-count: 3; /* Chrome, Safari, Opera */    -moz-column-count: 3; /* Firefox */
	   
	column-count: 3;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference