You are here : cssCSS 3column-gap

column-gap - CSS 3

The column-gap property specifies the gap between the columns.Note: If there is a column-rule between columns, it will appear in the 
middle of the gap.


Syntax

column-gap: length|normal|initial|inherit;


Example

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


Output / Return Value


Limitations


Alternatives / See Also


Reference