fix(curriculum): Clarify what a space-around value of align-content does (#66397)

This commit is contained in:
c0d1ng_ma5ter 2026-03-12 13:26:18 -06:00 committed by GitHub
parent b5b35d02c2
commit 20f88de540
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@ dashedName: step-27
# --description--
With the `space-around` value, items are evenly distributed within the alignment container. To see it in action, change the `align-content` value from `end` to `space-around`.
With the `space-around` value, items are evenly distributed within the alignment container. Each item has equal space on both sides, but the space at the start and end edges is half the space between two adjacent items. To see it in action, change the `align-content` value from `end` to `space-around`.
# --hints--