JSFiddle - React, Tailwind, and code Playground

HTML

<div class="text">Joy of T<span>E</span>X</div>

SCSS

.text {
  font-size: 35px;
  position: relative;
  span {
    transform:translateY(10px);
    display: inline-block;
  }
}