JSFiddle - React, Tailwind, and code Playground

by thirtydot

HTML

<ul>
    <li>Item 1 is one item in this list, now this is the only item in this list.</li>
</ul>

CSS

ul {
    -moz-column-count: 4;
    -moz-column-gap: 20px;
    -webkit-column-count: 4;
    -webkit-column-gap: 20px;
    column-count: 4;
    column-gap: 20px;
    display: inline-block;
}
li {
    break-inside: avoid;
}