JSFiddle - React, Tailwind, and code Playground

HTML

<div id="box1">1</div>
      <div id="box2">2</div>
      <div id="box3">3</div>

CSS

body {
  display: -webkit-box;
  box-orient: vertical;
  box-direction: reverse;
  color: white;
}
#box1{
	background: red;
	height: 100px;
	width: 80px;
	
}
#box2{
	background: black;
	height: 100px;
	width: 80px;
}
#box3{
	background: blue;
	height: 100px;
	width: 80px;
}