JSFiddle - React, Tailwind, and code Playground
HTML
<div class="test">
TEST SPACE
<div class="inner-test">TEST SPACE</div>
</div>
CSS
.test {
position: relative;
font-size: 100px;
}
.inner-test {
position: absolute;
top: 35px;
left: 249px;
font-size: 12px;
font-weight: bold;
color: #c00;
text-shadow: 0 0 5px green;
}