JSFiddle - React, Tailwind, and code Playground

by wllai2001

HTML

<div class="flex">
  <div class="item">1</div>
  <div class="item flex-2">2</div>
  <div class="item order">3</div>
  <div class="item flex-2">4</div>
  <div class="item">5</div>
</div>

CSS

.flex {
  display: flex;
  height: 300px;
  padding: 15px;
  background-color: #61a0f8;
  justify-content: space-around;
}

.item {
  flex: 1;
  background-color: #f08bc3;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
}

.flex-2 {
  flex: 3;
  background-color: #f08bc3;
}

.order {
  order: -1;
}