JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
<li>Foo</li>
<li>Bar</li>
<li>FooBar</li>
</ul>

CSS

ul {
  overflow: hidden;
  
  background: blue;
}

li {
  float: left;
  
  margin: 0 10px;
  list-style-type: none;
  color: white;
}