CSS gridrowgap Property (original) (raw)

CSS grid-row-gap Property

Last Updated : 27 Aug, 2024

The grid-row-gap property in CSS is used to define the size of the gap between the grid elements. The user can specify the width of the gap separating the rows by providing a value to the grid-row-gap.

**Syntax:

grid-row-gap: length | percentage | global-values;

**Property Values:

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

html `

CSS grid-row-gap Property
<style>
    .main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-row-gap: 20px;
        grid-column-gap: 20px;
        background-color: green;
        padding: 30px;
    }

    .main>div {
        background-color: white;
        text-align: center;
        padding: 15px;
        font-size: 25px;
    }
</style>
G
E
E
K
S

`

**Output:

**Example:

html `

CSS grid-row-gap Property
<style>
    .main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-row-gap: 20%;
        grid-column-gap: 2%;
        background-color: green;
        padding: 30px;
    }

    .main>div {
        background-color: white;
        text-align: center;
        padding: 15px;
        font-size: 25px;
    }
</style>
G
E
E
K
S

`

**Output:

**Example:

html `

CSS grid-row-gap Property
<style>
    .main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-row-gap: initial;
        grid-column-gap: 20px;
        background-color: green;
        padding: 30px;
    }

    .main>div {
        background-color: white;
        text-align: center;
        padding: 15px;
        font-size: 25px;
    }
</style>
G
E
E
K
S

`

**Output:

**Supported Browsers: The browser supported by _CSS grid-row-gap Property are listed below: