Standard WebKit Radial Gradient Background

by J. Albert Bowden

HTML

<div></div>

CSS

div{width:500px; height:500px;
        background: -webkit-gradient(
          radial,
          50% 50%,
          0,
          50% 50%,
          900, 
          from(rgb(168, 168, 168)),
          to(rgb(36, 36, 36))
        ) !important;
      }