JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    <div id="text">TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT </div>
    <div id="other">OTHER TEXT </div>
</div>

CSS

#container {
    width: 100px;
    height: 100px;
    position: relative;
}

#text, 
#other {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#other {
    z-index: 10;
    color:#f00;
}