From b2708670fff4d10386ddae26b23a6aa43a11e3c1 Mon Sep 17 00:00:00 2001 From: Rahul Patil <42351326+DeDX3@users.noreply.github.com> Date: Wed, 1 Sep 2021 21:02:30 +0530 Subject: [PATCH] Fixed spelling of display value Fixed a spelling mistake from 'display: gird' to 'display: grid' --- snippets/vertical-scroll-snap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/vertical-scroll-snap.md b/snippets/vertical-scroll-snap.md index 31fdc11c6..74a8f91e0 100644 --- a/snippets/vertical-scroll-snap.md +++ b/snippets/vertical-scroll-snap.md @@ -7,7 +7,7 @@ lastUpdated: 2020-08-18T14:25:46+03:00 Creates a scrollable container that will snap on elements when scrolling. -- Use `display: gird` and `grid-auto-flow: row` to create a vertical layout. +- Use `display: grid` and `grid-auto-flow: row` to create a vertical layout. - Use `scroll-snap-type: y mandatory` and `overscroll-behavior-y: contain` to create a snap effect on vertical scroll. - You can use `scroll-snap-align` with either `start`, `stop` or `center` to change the snap alignment.