“заказ в гибке” Ответ

Порядок изменения сгибания

.box {
  display: flex;
  flex-direction: row;
}
.box :nth-child(1) { order: 2; }
.box :nth-child(2) { order: 3; }
.box :nth-child(3) { order: 1; }
.box :nth-child(4) { order: 4; }
.box :nth-child(5) { order: 5; }
garzj

гибкий заказ

 flex-direction: column-reverse
Itchy Ibis

заказ в гибке

/*default is 0 and -1 to make sure it always stay at first
larger positive number stay at last*/
.item-1 {
  order:2; /* if other item is 0 then it will be in last */
}
Shirshak kandel

Ответы похожие на “заказ в гибке”

Вопросы похожие на “заказ в гибке”

Больше похожих ответов на “заказ в гибке” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования