The grid-row-gap
CSS property specifies the gutter between grid rows.
/* <length> values */ grid-row-gap: 20px; grid-row-gap: 1em; grid-row-gap: 3vmin; grid-row-gap: 0.5cm; /* <percentage> value */ grid-row-gap: 10%; /* Global values */ grid-row-gap: inherit; grid-row-gap: initial; grid-row-gap: unset;
The effect is as though the affected grid lines acquired width: the grid track between two grid lines is the space between the gutters that represent them. For the purpose of track sizing, each gutter is essentially treated as an extra track of the specified length. Negative values are invalid.
Initial value | 0 |
---|---|
Applies to | grid containers |
Inherited | no |
Percentages | refer to corresponding dimension of the content area |
Media | visual |
Computed value | the percentage as specified or the absolute length |
Animation type | a length |
Canonical order | the unique non-ambiguous order defined by the formal grammar |
<length-percentage>
<percentage>
values are relative to the dimension of the element.<length-percentage>where
<length-percentage> = <length> | <percentage>
<div id="grid"> <div></div> <div></div> <div></div> </div>
#grid { display: grid; height: 200px; grid-template-columns: 200px; grid-template-rows: repeat(3, 1fr); grid-row-gap: 20px; } #grid > div { background-color: lime; }
Specification | Status | Comment |
---|---|---|
CSS Grid Layout The definition of 'grid-row-gap' in that specification. | Candidate Recommendation | Initial definition |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support |
57 291 |
16 |
52 402 |
No |
44 283 |
10.1 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | 57 |
57 291 |
16 |
52 402 |
No | 44 | 10.3 |
1. From version 29: this feature is behind the Enable experimental Web Platform features
preference. To change preferences in Chrome, visit chrome://flags.
2. From version 40: this feature is behind the layout.css.grid.enabled
preference (needs to be set to true
). To change preferences in Firefox, visit about:config.
3. From version 28: this feature is behind the Enable experimental Web Platform features
preference.
grid-column-gap
, grid-gap
© 2005–2018 Mozilla Developer Network 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-row-gap