enum
Wrap
public sealed enum Wrap : Enum Possible values for flex-wrap CSS property.
Enum Values
| Name | Value | Description |
|---|---|---|
NoWrap | | Elements will be laid out in a single line. |
Wrap | | Elements will be moved to subsequent lines on overflow. |
WrapReverse | | Same as Wrap, but the line order will be reversed, i.e. if one item overflows the width, it will be placed on the first line, and the others will be placed on the second line. |