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

LibWeb/CSS: Implement parsing of grid-auto-columns and grid-auto-rows

This commit is contained in:
Aliaksandr Kalenik 2023-05-21 18:08:41 +03:00 committed by Andreas Kling
parent b49e9d2eab
commit 6e0601a63e
6 changed files with 71 additions and 0 deletions

View file

@ -958,6 +958,30 @@
"string"
]
},
"grid-auto-columns": {
"inherited": false,
"initial": "auto",
"valid-identifiers": [
"auto"
],
"valid-types": [
"length",
"percentage",
"string"
]
},
"grid-auto-rows": {
"inherited": false,
"initial": "auto",
"valid-identifiers": [
"auto"
],
"valid-types": [
"length",
"percentage",
"string"
]
},
"grid-template-columns": {
"inherited": false,
"initial": "auto",