JSFiddle - React, Tailwind, and code Playground

by David Thomas

HTML

<p data-highlightword="Client">Client Testimonial</p>

CSS

p[data-highlightword] {
    position: relative;
}

p[data-highlightword]::before {
    content: attr(data-highlightword);
    color: #f90;
    position: absolute;
    top: 0;
    left: 0;
}