JSFiddle - React, Tailwind, and code Playground

HTML

<div class="element1"></div>
<div class="element2"></div>
<div class="element3"></div>

CSS

div {
	width: 100px;
	height: 100px;
}
/*add styles here*/
.element1 {
	background: rgb(211, 206, 61);
  float: left;
}
.element2 {
	background: rgb(85, 66, 54);
  float: left;
}
.element3 {
	background: rgb(247,120,37);
  float: left;
}