diff --git a/storybook/storybook-react/src/Grid/Grid.docs.mdx b/storybook/storybook-react/src/Grid/Grid.docs.mdx
index 566409d41d..d456363419 100644
--- a/storybook/storybook-react/src/Grid/Grid.docs.mdx
+++ b/storybook/storybook-react/src/Grid/Grid.docs.mdx
@@ -52,4 +52,13 @@ Elke cel biedt ruimte voor een afbeelding.
+### Verticale witruimte
+
+Een grid maakt automatisch meerdere rijen als de eerstvolgende cel niet meer op de huidige rij past.
+
+Standaard zit tussen twee rijen evenveel witruimte als tussen twee kolommen.
+In sommige gevallen kan daar beter meer of minder witruimte staan.
+
+
+
Voor meer voorbeelden raadpleeg je [Grid Cell](?path=/docs/react_layout-grid-cell--docs) zelf.
diff --git a/storybook/storybook-react/src/Grid/Grid.stories.tsx b/storybook/storybook-react/src/Grid/Grid.stories.tsx
index 6d4e4763ba..72e65e1541 100644
--- a/storybook/storybook-react/src/Grid/Grid.stories.tsx
+++ b/storybook/storybook-react/src/Grid/Grid.stories.tsx
@@ -58,6 +58,26 @@ export const VerticalSpace: Story = {
compact: false,
paddingVertical: 'medium',
},
+ name: 'Verticale marge',
+}
+
+export const VerticalGap: Story = {
+ ...StoryTemplate,
+ args: {
+ children: Array.from(Array(6).keys()).map((i) => (
+
+ )),
+ gapVertical: 'small',
+ },
+ argTypes: {
+ gapVertical: {
+ control: {
+ type: 'radio',
+ labels: { small: 'small', undefined: 'medium', large: 'large' },
+ },
+ options: ['small', undefined, 'large'],
+ },
+ },
name: 'Verticale witruimte',
}