JSFiddle - React, Tailwind, and code Playground
by jakie8
HTML
<div id="bg">
</div>
CSS
body{
background:#111;
padding:20px;
}
#bg{
width:400px;
height:300px;
background-color: #dce5ec;
background-image: -webkit-gradient(linear, left top, left bottom, from(#dce5ec), to(#adb6bd));
background-image: -webkit-linear-gradient(top, #dce5ec, #adb6bd);
background-image: -moz-linear-gradient(top, #dce5ec, #adb6bd);
background-image: -o-linear-gradient(top, #dce5ec, #adb6bd);
background-image: linear-gradient(to bottom, #dce5ec, #adb6bd);
}