Flex Wrap

Class Properties
t.flexWrap flexWrap: 'wrap'
t.flexWrapReverse flexWrap: 'wrap-reverse'
t.flexNoWrap flexWrap: 'nowrap'

Don’t wrap

Use t.flexNoWrap to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary:

1
2
3

Wrap normally

Use t.flexWrap to allow flex items to wrap:

1
2
3

Wrap reversed

Use t.flexWrapReverse to wrap flex items in the reverse direction:

1
2
3