JSFiddle - React, Tailwind, and code Playground

by JoshC

HTML

<p>See the whitespace between the elements in the markup?</p>
<div>text</div>
<div>text</div>
<div>text</div>
<div>text</div>
<div>text</div>
<p>The whitespace explains the gap of spacing between the elements.</p>

CSS

div {
    display: inline-block;
    padding: 15px;
    border: 2px solid red;
}