JSFiddle - React, Tailwind, and code Playground
by j08691
HTML
<div class="button"></div>
<div class="button"></div>
<div class="button one-line"></div>
<div class="button"></div>
<div class="button"></div>
CSS
.button {
width: 50px;
height: 50px;
background-color: lightblue;
margin: 10px;
border-radius: 60px;
float: left;
}
.one-line {
clear: both;
margin-right:100%;
}