From 0f5e5948482adaa65ee7fe37c77a7199c0f28eb7 Mon Sep 17 00:00:00 2001 From: John B Date: Fri, 6 Apr 2018 00:54:57 -0700 Subject: [PATCH] fix(challenges): Fix typo issue on CSS Grid:Minmax (#17027) the example explains that grid-template-columns: 100px minmax(50px, 200px) is set to create three columns when in fact it is only set to create two columns. --- 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 3e30844fad..e01434d4d8 100644 --- a/challenges/01-responsive-web-design/css-grid.json +++ b/challenges/01-responsive-web-design/css-grid.json @@ -929,7 +929,7 @@ "description": [ "There's another built-in function to use with grid-template-columns and grid-template-rows called minmax. It's used to limit the size of items when the grid container changes size. To do this you need to specify the acceptable size range for your item. Here is an example:", "
grid-template-columns: 100px minmax(50px, 200px);
", - "In the code above, grid-template-columns is set to create three columns; the first is 100px wide, and the second has the minimum width of 50px and the maximum width of 200px.", + "In the code above, grid-template-columns is set to create two columns; the first is 100px wide, and the second has the minimum width of 50px and the maximum width of 200px.", "
", "Using the minmax function, replace the 1fr in the repeat function with a column size that has the minimum width of 90px and the maximum width of 1fr, and resize the preview panel to see the effect." ],