JSFiddle - React, Tailwind, and code Playground

HTML

<div class="rectangle">Rectangle</div>
<div class="square square-1">Square 1</div>
<div class="square square-2">Square 2</div>

CSS

div {
  border: 1px solid black;
  padding: 20px;
  width: 80px;
}
.rectangle {
  height: 82px;
  float: left;
}
.square {
  float: left;
}
.square-2 {
  float: none;
  position: absolute;
  top: 70px;
  left: 130px;
}