mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
LibWeb: Support "normal" and "stretch" justify-content in CSS parser
This commit is contained in:
parent
b395cfccb0
commit
56ff9bffae
4 changed files with 11 additions and 3 deletions
|
@ -206,6 +206,7 @@
|
|||
"optimizequality=smooth"
|
||||
],
|
||||
"justify-content": [
|
||||
"normal",
|
||||
"start",
|
||||
"end",
|
||||
"flex-start",
|
||||
|
@ -213,7 +214,8 @@
|
|||
"center",
|
||||
"space-between",
|
||||
"space-around",
|
||||
"space-evenly"
|
||||
"space-evenly",
|
||||
"stretch"
|
||||
],
|
||||
"justify-items": [
|
||||
"baseline",
|
||||
|
|
|
@ -1264,7 +1264,7 @@
|
|||
},
|
||||
"justify-content": {
|
||||
"inherited": false,
|
||||
"initial": "flex-start",
|
||||
"initial": "normal",
|
||||
"valid-types": [
|
||||
"justify-content"
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue