From 0ab34fe29c7ee86eb66cb873ffa345325b58138a Mon Sep 17 00:00:00 2001 From: Ting-Yu Lin Date: Tue, 21 Jan 2025 17:30:54 -0800 Subject: [PATCH] [css-flexbox-1] Fix fallback alignment for align-content:stretch The commit b6c01a41bb375777763b913006a64af87e5fa73e meant to edit only `space-*` values. Also, CSS Align spec has `align-content:stretch` fallback value as `flex-start` per https://drafts.csswg.org/css-align-3/#valdef-align-content-stretch --- css-flexbox-1/Overview.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css-flexbox-1/Overview.bs b/css-flexbox-1/Overview.bs index 313e6427799..0ae31aeb14e 100644 --- a/css-flexbox-1/Overview.bs +++ b/css-flexbox-1/Overview.bs @@ -2233,7 +2233,7 @@ Packing Flex Lines: the 'align-content' property
Lines stretch to take up the remaining space. If the leftover free-space is negative, - this value falls back to safe flex-start. + this value falls back to flex-start. Otherwise, the free-space is split equally between all of the lines, increasing their cross size.