flexDirection

object flexDirection extends Style[String]

The CSS flex-direction property specifies how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).

The CSS flex-direction property specifies how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).

Note that the value row and row-reverse are affected by the directionality of the flex container. If its dir attribute is ltr, row represents the horizontal axis oriented from the left to the right, and row-reverse from the right to the left; if the dir attribute is rtl, row represents the axis oriented from the right to the left, and row-reverse from the left to the right.

MDN

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

Value members

Concrete fields

lazy val column: StyleSetter

The flex container's main-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.

The flex container's main-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.

MDN

lazy val columnReverse: StyleSetter

Behaves the same as column but the main-start and main-end are permuted.

Behaves the same as column but the main-start and main-end are permuted.

MDN

lazy val row: StyleSetter

The flex container's main-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.

The flex container's main-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.

MDN

lazy val rowReverse: StyleSetter

Behaves the same as row but the main-start and main-end points are permuted.

Behaves the same as row but the main-start and main-end points are permuted.

MDN

Inherited fields

override val name: String
Inherited from
Style