Skip to content

Commit

Permalink
fix(css): Fix syntax for text-wrap (#781)
Browse files Browse the repository at this point in the history
* Fix syntax for `text-wrap`

* Apply suggestions from code review

* Apply suggestions from code review
  • Loading branch information
skyclouds2001 authored Dec 2, 2024
1 parent 6f8e474 commit 1b708b3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions css/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -10129,14 +10129,17 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-position"
},
"text-wrap": {
"syntax": "<'text-wrap-mode> || <'text-wrap-style'>",
"syntax": "<'text-wrap-mode'> || <'text-wrap-style'>",
"media": "visual",
"inherited": true,
"animationType": [
"text-wrap-mode",
"text-wrap-style"
],
"percentages": "no",
"percentages": [
"text-wrap-mode",
"text-wrap-style"
],
"groups": [
"CSS Text"
],
Expand All @@ -10151,7 +10154,7 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-wrap"
},
"text-wrap-mode": {
"syntax": "auto | wrap | nowrap",
"syntax": "wrap | nowrap",
"media": "visual",
"inherited": true,
"animationType": "discrete",
Expand Down

0 comments on commit 1b708b3

Please sign in to comment.