You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: use simpler language for row- and column-reverse descriptions (mdn#8762)
The word "permuted" was being used. This tripped me up so much while reading that I had to stop and open this PR.
This is not very approachable language. It's not a commonly used word, so let's try to improve the reading level for these descriptions.
Open to suggestions or improvements for my proposed change! 🙂
Copy file name to clipboardExpand all lines: files/en-us/web/css/flex-direction/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,11 +46,11 @@ The following values are accepted:
46
46
- `row`
47
47
- : The flex container'smain-axis is defined to be the same as the text direction. The **main-start** and **main-end** points are the same as the content direction.
48
48
- `row-reverse`
49
-
- : Behaves the same as `row` but the **main-start** and **main-end** points are permuted.
49
+
- : Behaves the same as `row` but the **main-start** and **main-end** points are opposite to the content direction.
50
50
- `column`
51
51
- : The flex container'smain-axis is the same as the block-axis. The **main-start** and **main-end** points are the same as the **before** and **after** points of the writing-mode.
52
52
- `column-reverse`
53
-
- : Behaves the same as `column` but the **main-start** and **main-end** are permuted.
53
+
- : Behaves the same as `column` but the **main-start** and **main-end** are opposite to the content direction.
0 commit comments