JSFiddle - React, Tailwind, and code Playground

by JoshC

HTML

<p>Resetting the font-size on the parent elemenet effectively removes the space between the child elements:</p>
<div id="parent">
<div>text</div>
<div>text</div>
<div>text</div>
<div>text</div>
<div>text</div>
</div>

CSS

#parent {
    font-size:0;
}
#parent > div {
    display: inline-block;
    padding: 15px;
    border: 2px solid red;
    font-size:16px;
}