Repeat Radial Gradients - HTML CSS CSS

HTML CSS examples for CSS:Color

Description

Repeat Radial Gradients

Demo Code

ResultView the demo in separate window

<html>
   <head>
      <style>
         #grad1 {<!--from  w ww.  java2s  .c om-->
            height: 100px;
            width: 550px;
            background: -webkit-repeating-radial-gradient(blue, yellow 10%, green 15%);
            background: -o-repeating-radial-gradient(blue, yellow 10%, green 15%);
            background: -moz-repeating-radial-gradient(blue, yellow 10%, green 15%);
            background: repeating-radial-gradient(blue, yellow 10%, green 15%);
         }
      </style>
   </head>
   <body>
      <div id="grad1"></div>
   </body>
</html>

Related Tutorials