JSFiddle - React, Tailwind, and code Playground

HTML

<span class='parent'>Parent<span class='child'> and child</span></span>

CSS

.parent {
    background-color: green;
}

.child {
   float: right;
    background-color: inherit;
}