flexWrap

object flexWrap extends Style[String]

The CSS flex-wrap property specifies whether the children are forced into a single line or if the items can be flowed on multiple lines.

The CSS flex-wrap property specifies whether the children are forced into a single line or if the items can be flowed on multiple lines.

MDN

class Style[String]
class Key
class Object
trait Matchable
class Any

Value members

Concrete fields

lazy val nowrap: StyleSetter

The flex items are laid out in a single line which may cause the flex container to overflow. The cross-start is either equivalent to start or before depending flex-direction value.

The flex items are laid out in a single line which may cause the flex container to overflow. The cross-start is either equivalent to start or before depending flex-direction value.

MDN

lazy val wrap: StyleSetter

The flex items break into multiple lines. The cross-start is either equivalent to start or before depending flex-direction value and the cross-end is the opposite of the specified cross-start.

The flex items break into multiple lines. The cross-start is either equivalent to start or before depending flex-direction value and the cross-end is the opposite of the specified cross-start.

MDN

lazy val wrapReverse: StyleSetter

Behaves the same as wrap but cross-start and cross-end are permuted.

Behaves the same as wrap but cross-start and cross-end are permuted.

MDN

Inherited fields

override val name: String
Inherited from
Style