JSFiddle - React, Tailwind, and code Playground

by calder12

HTML

<div>
    <div>Example 1</div>
    <div>Example 2</div>
    <div>Example three</div>
    <div>Example four</div>
</div>

CSS

div {
    width: 200px;
}

div > div {
    float: left;
    margin-right: 5px;
    width: 45px;
}