CSS column-gap

The CSS column-gap property specifies a fixed-length gutter between columns in a container, adding space between them.

It specifies spacing between columns, separating boxes in the container’s inline axis similar to inline-axis margin.

You can specify the column gap to be either normal or to be a specific size (for example, a value of 30px would create a column gap of 30 pixels).

The column-gap property was originally introduced for the purpose of specifying the gap on multi-column layouts. However, its scope has since been expanded to include flexbox and grid containers. The exact handling of column-gap depends on the type of layout container.

Multi-Column Layout

Here's an example of column-gap being used on a multi-column container.

Flexbox Layout

Here's an example of column-gap being used on a flex container.

Grid Layout

Here's an example of column-gap being used on a grid container (this is the same example that's displayed at the top of this article).

Syntax

Possible Values

<length-percentage>

Specifies the width of the gap. For example, 40px would create a column gap of 40 pixels. Cannot be a negative value.

Note that <length-percentage> is equivalent to [ <length> | <percentage> ]. In other words, you can provide a <length> or <percentage> value.

normal
Represents a used value of 1em on multi-column containers, and a used value of 0px in all other contexts.

In addition, all CSS properties also accept the following CSS-wide keyword values as the sole component of their property value:

initial
Represents the value specified as the property's initial value.
inherit
Represents the computed value of the property on the element's parent.
unset
This value acts as either inherit or initial, depending on whether the property is inherited or not. In other words, it sets all properties to their parent value if they are inheritable or to their initial value if not inheritable.

Basic Property Information

Initial Value
Normal
Applies To
Multi-column containers, flex containers, grid containers.
Inherited?
No
Animatable
Yes, by computed value type (see example)

History of column-gap & grid-column-gap

The column-gap property was originally designed with the sole purpose of being used in multi-column layouts. It has since been repurposed to include flex and grid containers.

In addition to this, the CSS Grid Layout module was originally written with its own set of gutter properties (grid-gap, grid-column-gap, and grid-row-gap). Those properties were later unified into the column-gap/row-gap/gap naming, which also expanded the scope to include flexbox containers, grid containers and multi-column containers.

For compatibility purposes, those grid-* property names are now aliases for the properties with the new names.

Specifically:

CSS Specifications

The column-gap property is defined in CSS Box Alignment Module Level 3 (W3C Working Draft, 21 April 2020).

Vendor Prefixes

For maximum browser compatibility many web developers add browser-specific properties by using extensions such as -webkit- for Safari, Google Chrome, and Opera (newer versions), -ms- for Internet Explorer, -moz- for Firefox, -o- for older versions of Opera etc. As with any CSS property, if a browser doesn't support a proprietary extension, it will simply ignore it.

This practice is not recommended by the W3C, however in many cases, the only way you can test a property is to include the CSS extension that is compatible with your browser.

The major browser manufacturers generally strive to adhere to the W3C specifications, and when they support a non-prefixed property, they typically remove the prefixed version. Also, W3C advises vendors to remove their prefixes for properties that reach Candidate Recommendation status.

Many developers use Autoprefixer, which is a postprocessor for CSS. Autoprefixer automatically adds vendor prefixes to your CSS so that you don't need to. It also removes old, unnecessary prefixes from your CSS.

You can also use Autoprefixer with preprocessors such as Less and Sass.