JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="box">
  <div class="box1">2</div>
  <div class="box2">1</div>
</div>

CSS

div.box {
  width: 100%;
  position: relative;
}
div.box1 {
  float: right;
}
div.box2 {
  float: left;
}
@media (max-width: 500px){
  div.box1 {
    display: block;
    float:none;
  }
}