JSFiddle - React, Tailwind, and code Playground

by thirtydot

HTML

<ul>
    <li>Element 1</li>
    <li>El 2</li>
    <li>Element three</li>
    <li>Element 4</li>
</ul>

CSS

ul{
    -webkit-box-orient: horizontal;
    display: -webkit-box;
    width: 100%;
    
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
}