CSS3 Repeating the radial gradients Examples




CSS3 Repeating the radial gradients Examples

<!DOCTYPE html>
<html>
   <head>
      <title>CSS3 Repeating the radial gradients Examples</title>
      <style type="text/css">      
         .gradient {
            width: 400px;
            height: 300px;
            background: red;
            background: -webkit-repeating-radial-gradient(black, red 10%, lime 20%);
            background: -ms-repeating-radial-gradient(black, red 10%, lime 20%);
            background: repeating-radial-gradient(black, red 10%, lime 20%);
         }
      </style>
   </head>
   <body>
      <div class="gradient"></div>
   </body>
</html> 

Output