Skip to content

Commit 9c52cb4

Browse files
authored
fix(css): Fix syntax for column-rule-style/width and canonical order (#1062)
* fix(css): order `column-rule` shorthand properties in canonical order. * fix(css): Fix syntax for `column-rule-style/width`
1 parent b1c81f0 commit 9c52cb4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

css/properties.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4516,9 +4516,9 @@
45164516
"media": "visual",
45174517
"inherited": false,
45184518
"animationType": [
4519-
"column-rule-color",
4519+
"column-rule-width",
45204520
"column-rule-style",
4521-
"column-rule-width"
4521+
"column-rule-color"
45224522
],
45234523
"percentages": "no",
45244524
"groups": [
@@ -4531,9 +4531,9 @@
45314531
],
45324532
"appliesto": "multicolElements",
45334533
"computed": [
4534-
"column-rule-color",
4534+
"column-rule-width",
45354535
"column-rule-style",
4536-
"column-rule-width"
4536+
"column-rule-color"
45374537
],
45384538
"order": "perGrammar",
45394539
"status": "standard",
@@ -4556,7 +4556,7 @@
45564556
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-color"
45574557
},
45584558
"column-rule-style": {
4559-
"syntax": "<'border-style'>",
4559+
"syntax": "<line-style>",
45604560
"media": "visual",
45614561
"inherited": false,
45624562
"animationType": "discrete",
@@ -4572,7 +4572,7 @@
45724572
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-style"
45734573
},
45744574
"column-rule-width": {
4575-
"syntax": "<'border-width'>",
4575+
"syntax": "<line-width>",
45764576
"media": "visual",
45774577
"inherited": false,
45784578
"animationType": "length",

0 commit comments

Comments
 (0)