Skip to content

Commit

Permalink
docs: improve flex wrapping docs
Browse files Browse the repository at this point in the history
  • Loading branch information
yuschick committed Jun 25, 2023
1 parent dbfa7ef commit 4eb31d4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,14 @@ div {
flex-direction: row-reverse;
flex-wrap: wrap-reverse;
}
div {
display: flex;
flex-flow: row wrap;
}
div {
display: flex;
flex-flow: row-reverse nowrap;
}
```

#### ❌ Failing Examples
Expand All @@ -256,6 +264,10 @@ div {
display: flex;
flex-direction: row;
}
div {
display: flex;
flex-flow: row;
}
```

### Scroll Chaining
Expand Down

0 comments on commit 4eb31d4

Please sign in to comment.