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

LibWeb: Add support for parsing 'inset' shorthand CSS property

This commit is contained in:
FalseHonesty 2023-05-29 21:43:37 -04:00 committed by Andreas Kling
parent e129c8049b
commit cabfb7867c
4 changed files with 72 additions and 0 deletions

View file

@ -1151,6 +1151,24 @@
"image-rendering"
]
},
"inset": {
"inherited": false,
"initial": "auto",
"longhands": [
"top",
"right",
"bottom",
"left"
],
"max-values": 4,
"valid-types": [
"length",
"percentage"
],
"valid-identifiers": [
"auto"
]
},
"justify-content": {
"inherited": false,
"initial": "flex-start",