The column-gap CSS property sets the size of the gap (gutter) between an element's columns.
Initially a part of Multi-column Layout, the definition of column-gap has been broadened to include multiple layout methods. Now specified in Box Alignment, it may be used in Multi-column, Flexible Box, and Grid layouts.
/* Keyword value */ column-gap: normal; /* <length> values */ column-gap: 3px; column-gap: 2.5em; /* <percentage> value */ column-gap: 3%; /* Global values */ column-gap: inherit; column-gap: initial; column-gap: unset;
The column-gap property is specified as one of the values listed below.
normal1em. For all other layout types it is 0.<length><length>. The <length> property's value must be non-negative.<percentage><percentage>. The <percentage> property's value must be non-negative.| Initial value | normal |
|---|---|
| Applies to | multi-column elements, flex containers, grid containers |
| Inherited | no |
| Percentages | refer to corresponding dimension of the content area |
| Computed value | as specified, with <length>s made absolute, and normal computing to zero except on multi-column elements |
| Animation type | a length, percentage or calc(); |
normal | <length-percentage>where
<length-percentage> = <length> | <percentage>
<div id="flexbox"> <div></div> <div></div> <div></div> </div>
#flexbox {
display: flex;
height: 100px;
column-gap: 20px;
}
#flexbox > div {
border: 1px solid green;
background-color: lime;
flex: auto;
}
<div id="grid"> <div></div> <div></div> <div></div> </div>
#grid {
display: grid;
height: 100px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 100px;
column-gap: 20px;
}
#grid > div {
border: 1px solid green;
background-color: lime;
}
<p class="content-box"> This is some multi-column text with a 40px column gap created with the CSS `column-gap` property. Don't you think that's fun and exciting? I sure do! </p>
.content-box {
column-count: 3;
column-gap: 40px;
}
| Specification | Status | Comment |
|---|---|---|
| CSS Box Alignment Module Level 3 The definition of 'column-gap' in that specification. | Working Draft | Applies to grid and flexbox |
| CSS Grid Layout The definition of 'column-gap' in that specification. | Candidate Recommendation | Specifies how this property affects grid layouts |
| CSS Multi-column Layout Module The definition of 'column-gap' in that specification. | Working Draft | Initial definition |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Supported in Flex Layout | 84 | 84 | 63 | No | 70 | No |
| Mobile | ||||||
|---|---|---|---|---|---|---|
| Supported in Flex Layout | 84 | 84 | 63 | No | No | No |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Supported in Grid Layout | 66
|
16
|
61
|
No | 53
|
12.1
|
| Mobile | ||||||
|---|---|---|---|---|---|---|
| Supported in Grid Layout | 66
|
66
|
61
|
47
|
12
|
9.0
|
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Supported in Multi-column Layout | 50
|
12
|
52
|
10 | 37
|
10
|
calc() values |
66 | 16 | 61 | No | 53 | No |
<percentage> values |
66 | 16 | 61 | No | 53 | No |
| Mobile | ||||||
|---|---|---|---|---|---|---|
| Supported in Multi-column Layout | 50
|
50
|
52
|
37
|
10
|
5.0
|
calc() values |
66 | 66 | 61 | 47 | No | 9.0 |
<percentage> values |
66 | 66 | 61 | 47 | No | 9.0 |
row-gap, gap
© 2005–2020 Mozilla and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap