JSFiddle - React, Tailwind, and code Playground
HTML
<p>This is a <span class="testing">test</span> of applying a padding to an inline element.</p>
<br />
<p>This is a <span>test</span> of applying a padding to an inline element.</p>
CSS
.testing {
padding:3px;
}
span {
border: 1px solid #FF0000;
}
JavaScript
// a test of applying padding to an inline element