JSFiddle - React, Tailwind, and code Playground

by Константин Дралюк

HTML

<div>
a<u>b</u>c
</div>

CSS

div {
  background: linear-gradient(to bottom, red, blue);
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0,0,0,0.25);
  font-size: 30px; font-weight: bold;
}

u {
  text-decoration: overline underline;
}