JSFiddle - React, Tailwind, and code Playground
by aflynt
HTML
<ul class="wrapper">
<li>test1</li>
<li>test2</li>
<li>test3</li>
<li>test4</li>
</ul>
dasda
CSS
.wrapper {
list-style-type: none;
}
.wrapper li {
float:left;
}
.wrapper:after {
content:'';
display:block;
clear: both;
}