JSFiddle - React, Tailwind, and code Playground

HTML

<p>Hello, this is a <span>lorem ipsum</span> kind of thing</p>

CSS

p {
 width: 100px; 
}

span {
    position: relative;
    top: -10px;
    left: 50px;
    color: red;
}