mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:47:34 +00:00
LibWeb: Correct initial values for flex CSS properties
`flex-basis` and `flex-shrink` had different default values than are dictated in the spec.
This commit is contained in:
parent
2644d2c221
commit
ab57d7b408
1 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@
|
|||
},
|
||||
"flex-basis": {
|
||||
"inherited": false,
|
||||
"initial": "content"
|
||||
"initial": "auto"
|
||||
},
|
||||
"flex-direction": {
|
||||
"inherited": false,
|
||||
|
@ -234,7 +234,7 @@
|
|||
},
|
||||
"flex-shrink": {
|
||||
"inherited": false,
|
||||
"initial": 0
|
||||
"initial": 1
|
||||
},
|
||||
"flex-wrap": {
|
||||
"inherited": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue