JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<div class="one"></div>
<div class="two"></div>
</body>
CSS
.one{
width: 200px;
height: 200px;
background: linear-gradient(to bottom, green, blue);
}
.two{
margin-top: 30px;
width: 200px;
height: 200px;
background: -moz-radial-gradient(50px 50px, circle closest-side, green, blue);
background: -webkit-radial-gradient(50px 50px, circle closest-side, green, blue);
}