The row-gap CSS property sets the size of the gap (gutter) between an element's grid rows.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Syntax
/* <length> values */
row-gap: 20px;
row-gap: 1em;
row-gap: 3vmin;
row-gap: 0.5cm;
/* <percentage> value */
row-gap: 10%;
/* Global values */
row-gap: inherit;
row-gap: initial;
row-gap: unset;
Values
<length-percentage>- Is the width of the gutter separating the rows.
<percentage>values are relative to the dimension of the element.
Formal definition
| 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(); |
Formal syntax
normal | <length-percentage>where <length-percentage> = <length> | <percentage>
Examples
Flex layout
This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.
HTML
<div id="flexbox">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
CSS
#flexbox {
display: flex;
flex-wrap: wrap;
width: 300px;
row-gap: 20px;
}
#flexbox > div {
border: 1px solid green;
background-color: lime;
flex: 1 1 auto;
width: 100px;
height: 50px;
}
Result
Grid layout
HTML
<div id="grid">
<div></div>
<div></div>
<div></div>
</div>
CSS
#grid {
display: grid;
height: 200px;
grid-template-columns: 200px;
grid-template-rows: repeat(3, 1fr);
row-gap: 20px;
}
#grid > div {
border: 1px solid green;
background-color: lime;
}
Result
Specifications
| Specification | Status | Comment |
|---|---|---|
| CSS Box Alignment Module Level 3The definition of 'row-gap' in that specification. | Working Draft | Initial definition |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Support in Flex layout
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Supported in Flex Layout | Chrome
Full support 84 |
Edge
Full support 84 |
Firefox
Full support 63 |
IE
No support No |
Opera
Full support 70 |
Safari
No support No |
WebView Android
Full support 84 |
Chrome Android
Full support 84 |
Firefox Android
Full support 63 |
Opera Android
No support No |
Safari iOS
No support No |
Samsung Internet Android
No support No |
Legend
- Full support
- Full support
- No support
- No support
Support in Grid layout
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Supported in Grid Layout |
Chrome Full support 66 Full support 66 Full support 57 Alternate Name' Uses the non-standard name: Alternate Name' Uses the non-standard name: |
Edge Full support 16 Full support 16 Full support 16 Alternate Name' Uses the non-standard name: |
Firefox Full support 61 Full support 61 Full support 52 Alternate Name' Uses the non-standard name: Alternate Name' Uses the non-standard name: |
IE
No support No |
Opera Full support 53 Full support 53 Full support 44 Alternate Name' Uses the non-standard name: Alternate Name' Uses the non-standard name: |
Safari Full support 12.1 Full support 12.1 Full support 10.1 Alternate Name' Uses the non-standard name: |
WebView Android Full support 66 Full support 66 Full support 57 Alternate Name' Uses the non-standard name: |
Chrome Android Full support 66 Full support 66 Full support 57 Alternate Name' Uses the non-standard name: Disabled' From version 29: this feature is behind the |
Firefox Android Full support 61 Full support 61 Full support 52 Alternate Name' Uses the non-standard name: Alternate Name' Uses the non-standard name: |
Opera Android Full support 47 Full support 47 Full support 43 Alternate Name' Uses the non-standard name: Alternate Name' Uses the non-standard name: |
Safari iOS Full support 12 Full support 12 Full support 10.3 Alternate Name' Uses the non-standard name: |
Samsung Internet Android Full support 9.0 Full support 9.0 Full support 6.0 Alternate Name' Uses the non-standard name: |
Legend
- Full support
- Full support
- No support
- No support
- User must explicitly enable this feature.'
- User must explicitly enable this feature.
- Uses a non-standard name.'
- Uses a non-standard name.
See also
- Related CSS properties:
column-gap,gap - Grid Layout Guide: Basic concepts of grid layout - Gutters
row-gap (grid-row-gap) by Mozilla Contributors is licensed under CC-BY-SA 2.5.