You are here : cssCSS 3column-width

column-width - CSS 3

The column-width property specifies a suggested, optimal width for the columns.


Syntax

column-width: auto|length|initial|inherit;


Example

div
	{   
	-webkit-column-width: 100px; /* Chrome, Safari, Opera */    -moz-column-width: 100px; /* Firefox */
	   
	column-width: 100px;	
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference