JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<li>Cтрочка</li>
<li>Cтрочка</li>
<li>Cтрочка</li>
<li>Две<br>строчки</li>
<li>Cтрочка</li>
<li>Cтрочка</li>
</ul>
CSS
ul {
list-style: none;
height: 60px;
line-height: 60px;
padding: 0px;
margin: 0px;
background: #ccc;
}
li {
float: left;
padding: 0px 5px 0px 5px;
}