JSFiddle - React, Tailwind, and code Playground

by kazu69

HTML

<ul>
    <li>aaaaa</li>
    <li>bbbb</li>
</ul>

CSS

ul {
    list-style: none;
    padding: 0;
    font-size: 0;
}

li {
    display: inline-block;
    background: #f00;
    font-size: 16px;
}