mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 14:57:35 +00:00
LibWeb: Parse grid-column-start and related CSS properties
Parse grid-column-start, end, and the equivalent for rows.
This commit is contained in:
parent
92a00648b1
commit
44d08b81b7
8 changed files with 140 additions and 0 deletions
|
@ -694,6 +694,46 @@
|
|||
"normal"
|
||||
]
|
||||
},
|
||||
"grid-column-end": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
]
|
||||
},
|
||||
"grid-column-start": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
]
|
||||
},
|
||||
"grid-row-end": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
]
|
||||
},
|
||||
"grid-row-start": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
]
|
||||
},
|
||||
"grid-template-columns": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue