From 67704b6c4f307d6485e9f2448dc9015591b65338 Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Thu, 18 Dec 2025 02:41:46 -0600 Subject: [PATCH] fix(curriculum): fix code blocks for css example in minmax function lesson (#64731) --- .../lecture-working-with-css-grid/673226a62eb2121da41a3d68.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-css-grid/673226a62eb2121da41a3d68.md b/curriculum/challenges/english/blocks/lecture-working-with-css-grid/673226a62eb2121da41a3d68.md index 8c71499ffd1..9df002f7389 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-css-grid/673226a62eb2121da41a3d68.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-css-grid/673226a62eb2121da41a3d68.md @@ -63,7 +63,7 @@ Let's look at a practical example: What's happening here?  -The first `column, minmax(150px, 300px)`, will always be at least `150px` and at most `300px`, depending on the available space. +The first column, `minmax(150px, 300px)`, will always be at least `150px` and at most `300px`, depending on the available space. On the other hand, the second column, `1fr`, will take up any available remaining space in the grid container since there are no additional columns to share the space with.