JSFiddle - React, Tailwind, and code Playground
HTML
<div class="text">Link</div>
CSS
.text {
position: relative;
font-size: 100px;
margin: 50px;
}
.text:after {
content:"";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, .0));
}