flow direction in css

CSS
//The flex-direction property specifies the direction of the flexible items.
//Note: If the element is not a flexible item, the flex-direction property has no effect.
div {
  display: flex;
  flex-direction: row-reverse;
}
Source

Also in CSS: