From 88ad57db4fa3d501abf5ae3525ec654615c1bdb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile?= Date: Wed, 28 Jan 2026 08:47:58 +0100 Subject: [PATCH] Fix JSON formatting for CSS place-items description --- web-data/data/browsers.css-data.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/web-data/data/browsers.css-data.json b/web-data/data/browsers.css-data.json index 7ea2e13..2251498 100644 --- a/web-data/data/browsers.css-data.json +++ b/web-data/data/browsers.css-data.json @@ -35285,7 +35285,14 @@ "baseline_low_date": "2020-01-15", "baseline_high_date": "2022-07-15" }, - "description": "The CSS place-items shorthand property sets both the align-items and justify-items properties. The first value is the align-items property value, the second the justify-items one. If the second value is not present, the first value is also used for it." + "description": "The CSS place-items shorthand property sets both the align-items and justify-items properties. The first value is the align-items property value, the second the justify-items one. If the second value is not present, the first value is also used for it.", + "values": [ + { "name": "center", "description": "The items are packed flush to each other toward the center of the alignment container." }, + { "name": "start", "description": "The items are packed flush to each other toward the start edge of the alignment container." }, + { "name": "end", "description": "The items are packed flush to each other toward the end edge of the alignment container." }, + { "name": "stretch", "description": "If the combined size of the items is less than the size of the alignment container, any auto-sized items have their size increased equally." }, + { "name": "baseline", "description": "All items are aligned such that their baselines align." } + ] }, { "name": "place-self", @@ -43437,4 +43444,4 @@ } } ] -} \ No newline at end of file +}