fix(curriculum): fix code blocks for css example in minmax function lesson (#64731)

This commit is contained in:
Diem-Trang Pham 2025-12-18 02:41:46 -06:00 committed by GitHub
parent 63a1186080
commit 67704b6c4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.