JSFiddle - React, Tailwind, and code Playground
HTML
<p>собственно</p>
CSS
p
{
color: #A60000;
font-size: 40px;
font-weight: bold;
position: relative;
}
p:before
{
display: block;
top: 0;
left: 0;
position: absolute;
content: 'собственно';
color: #FF0000;
height: 30px;
overflow: hidden;
}
p:after
{
position: absolute;
display: block;
top: 0;
left: 0;
content: 'собственно';
color: #FF7373;
height: 25px;
overflow: hidden;
}