JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
  height: 200px;
  width: 200px;
  background: #f9f9f9;
  background: -moz-radial-gradient(center, ellipse cover, #f9f9f9 0%, #e1e4e8 62%, #d1d6db 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #f9f9f9 0%, #e1e4e8 62%, #d1d6db 100%);
  background: radial-gradient(ellipse at center, #f9f9f9 0%, #e1e4e8 62%, #d1d6db 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#d1d6db', GradientType=1);
}