JSFiddle - React, Tailwind, and code Playground
HTML
<p class="border">
This text has a border
<span class="no_border">and this text doesn't</span>
</p>
CSS
.border {
border: 1px solid #FF0000;
}
.no_border {
border: 1px solid white;
}