gridrowgap
grid-row-gap is a CSS property used in the CSS Grid Layout module to specify the vertical spacing between grid rows inside a grid container. It controls the amount of space that appears between adjacent rows, helping to separate grid items without relying on margins on individual items. The value can be a length (such as px, em, rem) or a percentage, and the initial value is 0.
In practice, grid-row-gap is the longhand form of the first value of the gap shorthand. The gap
Usage example: a grid container with three equal columns and a 16-pixel row gap would include rules
Compatibility and notes: grid-row-gap is widely supported in modern browsers and is part of standard CSS Grid