JSFiddle - React, Tailwind, and code Playground
by mkerny45
HTML
<div></div>
CSS
div {
height: 100px;
background: #ffffff;
background: -moz-linear-gradient(top, #ededed 0, #ffffff 50px);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#ededed), color-stop(50px,#ffffff));
background: -webkit-linear-gradient(top, #ededed 0,#ffffff 50px);
background: -o-linear-gradient(top, #ededed 0,#ffffff 50px);
background: -ms-linear-gradient(top, #ededed 0,#ffffff 50px);
background: linear-gradient(to bottom, #ededed 0,#ffffff 50px);
}