JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test"></div>
CSS
#test {
border-radius: 15px;
width: 600px;
height: 200px;
box-shadow: 0px 0px 10px black;
background: -moz-linear-gradient(left,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 1) 100%
) black;
-moz-transition: all 2s;
}
#test:hover {
background: -moz-linear-gradient(left,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 1) 100%
) white;
}