JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li>One</li>
    <li>Two</li>
</ul>

<p>This will go right below one and two</p>

CSS

ul li {
    float: left;
}

ul:after {
    clear: both;
    content: "";
    display: table;    
}