background-image-centered-ref.html (364B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Centered Background Gradient</title> 4 <style> 5 #a { 6 width: 200px; 7 height: 150px; 8 border-style: solid; 9 border-width: 10px; 10 background-position: 0px 0px; 11 background-image: repeating-radial-gradient(blue, green 20px); 12 } 13 </style> 14 <body> 15 <div id="a"></div> 16 </body>