JSFiddle - React, Tailwind, and code Playground

by trkli

HTML

<div class="wrap">
  <div class="el el--one"></div>
  <div class="el el--two"></div>
  <div class="el el--three"></div>
</div>

CSS

.wrap {
  display: flex;
}

.el {
  width: 50px;
  height: 25px;
}

.el--one {
  order: 1;
  background: yellow;
}

.el--two {
  order: 2;
  background: pink;
}

.el--three {
  order: 3;
  background: blue;
}