VOOZH about

URL: https://www.geeksforgeeks.org/css/css-grid-column-gap-property/

⇱ CSS grid-column-gap Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

CSS grid-column-gap Property

Last Updated : 27 Aug, 2024

The grid-column-gap property in CSS is used to set the size of the gap between the columns in a grid layout. 

Syntax:

grid-column-gap: none | length | initial |inherit;

Property Values:

Property Value

Definition

none

It is used to set the grid-column-gap property to its default value. The default value of grid-column-gap is 0.

length

The size of the gap between columns is given in terms of length. The value of length can be in the form of px, em, etc. The value must be non-negative.

initial

It is used to set the grid-column-gap property to its default value.

inherit

This property is inherited from its parent.

Different Example of CSS Grid Column Property

Example 1: In this example, we are using the above-explained property.

Output:

👁 Image

Example 2: This example describes the default grid-column-gap property. 

Output:

👁 Image
Supported browsers: The browser supported by CSS grid-column-gap property are listed below:

  • Google Chrome 57.0
  • Safari 10.0
  • Opera 44.0
  • Firefox 52.0
Comment
Article Tags: