Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#grad1 {
  height: 200px;
  background-color: #cccccc;
  background-image: repeating-radial-gradient(red, yellow 10%, green 15%);
}
</style>
</head>
<body>
<h2>Radial Gradient as Background Image</h2>
<p>The repeating-radial-gradient() function is used to repeat radial gradients:</p>
<div id="grad1"></div>
</body>
</html>