JSFiddle - React, Tailwind, and code Playground

HTML

<h1>Lorem Ipsum</h1>

CSS

h1 {
    font-size: 3em;
    text-align: center;
    position: relative;
}

h1:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,.0));
}