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-gap Apple extension property sets the gap between columns for block elements which are specified to display as a multi-column element. Firefox supports the -moz-column-gap property.
Values[]
| Value | Description |
|---|---|
normal |
Default value, depends on the user agent. |
<length> |
Specifies a length value for the space between columns. Values must be positive. Examples of lengths are px, cm, etc.
|
CSS example:
body {
-webkit-column-count:2;
-webkit-column-gap:50px;
}
