JSFiddle - React, Tailwind, and code Playground

by Nikhil krishnan

HTML

<div class="box">
<span>hello</span>
<span>hello</span>
<span>hello</span>
<span>hello</span>
<span>hello</span>
<span>hello</span>
<span>hello <br> kooi</span>
<span>hello</span>
<span>hello</span>
</div>

CSS

.box{
  width: 200px;
  height: 200px;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: space-between;
}
span{
  margin: 0 10px;
}