From a6a0266e0806135ac5775c280f2b16e0cee0e685 Mon Sep 17 00:00:00 2001 From: CharmedSatyr Date: Wed, 27 Jun 2018 18:08:34 +0700 Subject: [PATCH] fix(challenges): grammar fix in css-grid auto-fit challenge (#60) --- challenges/01-responsive-web-design/css-grid.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-responsive-web-design/css-grid.json b/challenges/01-responsive-web-design/css-grid.json index eea0e98fc..ac692e401 100644 --- a/challenges/01-responsive-web-design/css-grid.json +++ b/challenges/01-responsive-web-design/css-grid.json @@ -1278,7 +1278,7 @@ "id": "5a94fe6269fb03452672e462", "title": "Create Flexible Layouts Using auto-fit", "description": [ - "auto-fit works almost identical to auto-fill. The only difference is that when the container's size exceeds the size of all the items combined, auto-fill keeps inserting empty rows or columns and pushes your items to the side, while auto-fit collapses those empty rows or columns and stretches your items to fit the size of the container.", + "auto-fit works almost identically to auto-fill. The only difference is that when the container's size exceeds the size of all the items combined, auto-fill keeps inserting empty rows or columns and pushes your items to the side, while auto-fit collapses those empty rows or columns and stretches your items to fit the size of the container.", "Note
If your container can't fit all your items on one row, it will move them down to a new one.", "
", "In the second grid, use auto-fit with repeat to fill the grid with columns that have a minimum width of 60px and maximum of 1fr. Then resize the preview to see the difference."