JSFiddle - React, Tailwind, and code Playground
HTML
<div class="gradient">ijfdsjfsjd fdsfdsfhsdfhsdfhdsfhd</div>
CSS
div.gradient {
width: 50%; height: 300px; margin: 0 auto;
background: rgb(221,221,221);
background: -moz-linear-gradient(top, rgba(221,221,221,1) 0%, rgba(249,249,249,1) 20px);
background: -webkit-linear-gradient(top, rgba(221,221,221,1) 0%,rgba(249,249,249,1) 20px);
background: -o-linear-gradient(top, rgba(221,221,221,1) 0%,rgba(249,249,249,1) 20px);
background: -ms-linear-gradient(top, rgba(221,221,221,1) 0%,rgba(249,249,249,1) 20px);
background: linear-gradient(top, rgba(221,221,221,1) 0%,rgba(249,249,249,1) 20px);
}