1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 12:57:35 +00:00

LibWeb: Honor align-self over align-items when non-auto on flex item

This commit is contained in:
Andreas Kling 2022-07-11 23:52:36 +02:00
parent 3b3af58cf6
commit 2f0657739b
9 changed files with 84 additions and 10 deletions

View file

@ -1,10 +1,28 @@
{
"align-items": [
"flex-start",
"flex-end",
"center",
"baseline",
"stretch"
"center",
"flex-end",
"flex-start",
"normal",
"safe",
"self-end",
"self-start",
"stretch",
"unsafe"
],
"align-self": [
"auto",
"baseline",
"center",
"flex-end",
"flex-start",
"normal",
"safe",
"self-end",
"self-start",
"stretch",
"unsafe"
],
"background-attachment": [
"fixed",