В Flexbox есть свойство под названием flex-direction, которое определяет направление главной оси (в каком направлении располагаются flexbox дети) — по умолчанию ему присваивается значение row, т.е. располагать дочерние элементы в ряд слева направо (для большинства языков) или справа налево (для арабских языков).

  • row | row-reverse | column | column-reverse

  • row 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.

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

  • column 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.

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


Назад