JSFiddle - React, Tailwind, and code Playground
by dswitzer
HTML
<span class="test test-inline">hello world</span>
<span class="test test-inline-block">hello world</span>
CSS
.test {
box-sizing: content-box;
background-color: #ccc;
padding: 1em;
}
.test-inline {
display: inline;
}
.test-inline-block {
display: inline-block;
}