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:
parent
b49e9d2eab
commit
6e0601a63e
6 changed files with 71 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue